From 28359dc5d49dd2a10378915626aeb4120699ef4e Mon Sep 17 00:00:00 2001 From: Shein Alexey Date: Wed, 9 Feb 2011 11:59:44 +0000 Subject: [PATCH] Fixed a typo in the variable name in the example comment. git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@308160 c90b9560-bf6c-de11-be94-00142212c4b1 --- language/types.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/language/types.xml b/language/types.xml index 71fe3f6d5d..cc623f9ab3 100644 --- a/language/types.xml +++ b/language/types.xml @@ -157,7 +157,7 @@ if (is_int($an_int)) { $an_int += 4; } -// If $bool is a string, print it out +// If $a_bool is a string, print it out // (does not print out anything) if (is_string($a_bool)) { echo "String: $a_bool";