From e8abcf0aa3e3d9aaddfadfebde673b04b87dab9d Mon Sep 17 00:00:00 2001 From: Etienne Kneuss Date: Mon, 12 Nov 2007 22:53:56 +0000 Subject: [PATCH] Missing space (thanks Philip for the hint) git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@246080 c90b9560-bf6c-de11-be94-00142212c4b1 --- language/control-structures.xml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/language/control-structures.xml b/language/control-structures.xml index f16e893522..b4ea94c692 100644 --- a/language/control-structures.xml +++ b/language/control-structures.xml @@ -1,5 +1,5 @@ - + Control Structures @@ -540,9 +540,9 @@ foreach (array_expression as $key => $value) Unless the array is referenced, foreach operates on a copy of - the specified array and not the array itself.foreach has - some side effects on the array pointer. Don't rely on the array pointer during - or after the foreach without resetting it. + the specified array and not the array itself. foreach + has some side effects on the array pointer. Don't rely on the array + pointer during or after the foreach without resetting it.