From 8bef0beee24ab25760a1d3cf258984bb0d3dcf40 Mon Sep 17 00:00:00 2001 From: Thyago Clemente Date: Mon, 12 Aug 2019 16:00:33 +0200 Subject: [PATCH] Small translation improvements (#22152) Small changes to text to make more sense in Portuguese language --- guide/portuguese/php/switch/index.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/guide/portuguese/php/switch/index.md b/guide/portuguese/php/switch/index.md index 3c06be8f62..c8458cd837 100644 --- a/guide/portuguese/php/switch/index.md +++ b/guide/portuguese/php/switch/index.md @@ -2,34 +2,34 @@ title: Switch localeTitle: Interruptor --- -## Interruptor +## Interruptor (Switch) -No PHP, a instrução `Switch` é muito parecida com a instrução Javascript `Switch` (veja o [Guia de Comutação Javascript](/javascript/switch-statements) para comparar e contrastar). Ele permite testes rápidos de casos com várias condições possíveis, o código também é mais legível. +No PHP, a instrução `Switch` é muito parecida com a instrução `Switch` do Javascript (veja o [Guia de Comutação Javascript](/javascript/switch-statements) para comparar e contrastar). Ela permite testes rápidos de casos com várias condições possíveis, o código também é mais legível. ### Sintaxe ```php