diff --git a/language/operators.xml b/language/operators.xml index 6e46210e44..5b8839b041 100644 --- a/language/operators.xml +++ b/language/operators.xml @@ -1,5 +1,5 @@ - + Operators @@ -445,9 +445,9 @@ $b .= "There!"; // sets $b to "Hello There!", just like $b = $b . "There!"; Use parentheses to ensure the desired precedence. - For example, $a & $b == true evaluates + For example, $a & $b == true evaluates the equivalency then the bitwise and; while - ($a & $b) == true evaluates the bitwise and + ($a & $b) == true evaluates the bitwise and then the equivalency.