From c953f7a84377d349b951c3e9c9ab875cb07db4d2 Mon Sep 17 00:00:00 2001 From: Marco Cucinato Date: Sat, 3 Jan 2004 15:10:20 +0000 Subject: [PATCH] Small typo git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@147768 c90b9560-bf6c-de11-be94-00142212c4b1 --- reference/array/functions/reset.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/reference/array/functions/reset.xml b/reference/array/functions/reset.xml index 5febfc1631..87d3309524 100644 --- a/reference/array/functions/reset.xml +++ b/reference/array/functions/reset.xml @@ -1,5 +1,5 @@ - + @@ -29,7 +29,7 @@ $array = array('step one', 'step two', 'step three', 'step four'); // by default, the pointer is on the first element -echo current($array) . "
\n"; // step "one" +echo current($array) . "
\n"; // "step one" // skip two steps next($array);