From 41c30ef6187db9a5a960a4ec77e6a3bdf3da2655 Mon Sep 17 00:00:00 2001 From: Marco Cucinato Date: Wed, 23 Jun 2010 15:21:16 +0000 Subject: [PATCH] Typo; uniformed example title to the others git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@300695 c90b9560-bf6c-de11-be94-00142212c4b1 --- language/operators.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/language/operators.xml b/language/operators.xml index f83109a0e5..c90bdad192 100644 --- a/language/operators.xml +++ b/language/operators.xml @@ -1605,7 +1605,7 @@ $d = (true or foo()); $e = false || true; // The constant false is assigned to $f and then true is ignored -// Acts like: (($e = false) or true) +// Acts like: (($f = false) or true) $f = false or true; var_dump($e, $f); @@ -1799,7 +1799,7 @@ var_dump($a === $b); // bool(false) is an instantiated object of a certain class: - Using instanceof with classes + Using <literal>instanceof</literal> with classes