From e1840399e9d9602e5d344a7c530d9dfba98ffb64 Mon Sep 17 00:00:00 2001 From: Andrei Emanuel Cretan <44290290+AndyCE@users.noreply.github.com> Date: Thu, 8 Aug 2019 06:39:35 +0200 Subject: [PATCH] Translation changes (#22477) Corrections and minor changes where made to be easier to read --- guide/spanish/php/switch/index.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/guide/spanish/php/switch/index.md b/guide/spanish/php/switch/index.md index 49c7d9b2a1..2cb2204cd9 100644 --- a/guide/spanish/php/switch/index.md +++ b/guide/spanish/php/switch/index.md @@ -1,8 +1,8 @@ --- title: Switch -localeTitle: Cambiar +localeTitle: Switch --- -## Cambiar +## Switch En PHP, la sentencia `Switch` es muy similar a la sentencia Javascript `Switch` (consulte la [Guía de Javascript Switch](/javascript/switch-statements) para comparar y contrastar). Permite la prueba rápida de casos con muchas condiciones diferentes posibles, el código también es más legible. @@ -10,26 +10,26 @@ En PHP, la sentencia `Switch` es muy similar a la sentencia Javascript `Switch` ```php