From 8fc79173249a92d422ef03928c6768fc4807e1b5 Mon Sep 17 00:00:00 2001 From: Philip Olson Date: Mon, 3 Dec 2001 18:02:46 +0000 Subject: [PATCH] Typo fix git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@63794 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 5ee50a6a4d..20cbba76bb 100644 --- a/language/control-structures.xml +++ b/language/control-structures.xml @@ -1,5 +1,5 @@ - + Control Structures @@ -547,7 +547,7 @@ while (list($key, $value) = each ($arr)) { echo "Key: $key; Value: $value
\n"; } -foreach ($arr as $key => $value) { +foreach ($arr as $key => $value) { echo "Key: $key; Value: $value
\n"; } ]]>