From 9138ef65f24e400a75d28c142fbe72dc24dadb01 Mon Sep 17 00:00:00 2001 From: Etienne Kneuss Date: Mon, 12 Nov 2007 17:54:09 +0000 Subject: [PATCH] Fix typo (thanks Nuno for the hint) git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@246057 c90b9560-bf6c-de11-be94-00142212c4b1 --- language/control-structures.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/language/control-structures.xml b/language/control-structures.xml index f4271cf885..f16e893522 100644 --- a/language/control-structures.xml +++ b/language/control-structures.xml @@ -1,5 +1,5 @@ - + Control Structures @@ -541,7 +541,7 @@ 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 effets on the array pointer. Don't rely on the array pointer during + some side effects on the array pointer. Don't rely on the array pointer during or after the foreach without resetting it.