Skip to content

Commit 3d40fa1

Browse files
committed
fix variable names (closes #734)
1 parent 91b702a commit 3d40fa1

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

language/types/boolean.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,12 +35,12 @@ $foo = True; // atribui o valor True para $foo
3535
<programlisting role="php">
3636
<![CDATA[
3737
<?php
38-
$action = "show_version";
39-
$show_separators = true;
38+
$acao = "mostrar_versao";
39+
$exibir_separadores = true;
4040
4141
// == É um operador que testa
4242
// igualdade e retorna um booleano.
43-
if ($action == "mostrar_versao") {
43+
if ($acao == "mostrar_versao") {
4444
echo "A versão é 1.23";
4545
}
4646

0 commit comments

Comments
 (0)