From af55811b30ac552f0f6a004e33b47be2be75b526 Mon Sep 17 00:00:00 2001 From: Brandon Savage Date: Fri, 25 Sep 2009 17:52:49 +0000 Subject: [PATCH] Fixing ArrayIterator documentation. ArrayIterator does not take a string, but an array or an object; it throws an exception if you give it something else. git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@288809 c90b9560-bf6c-de11-be94-00142212c4b1 --- reference/spl/arrayiterator/construct.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/reference/spl/arrayiterator/construct.xml b/reference/spl/arrayiterator/construct.xml index d45a6b4476..dc8ecdda8f 100644 --- a/reference/spl/arrayiterator/construct.xml +++ b/reference/spl/arrayiterator/construct.xml @@ -11,7 +11,7 @@ &reftitle.description; ArrayIterator::__construct - stringarray + mixedarray Constructs an ArrayIterator object. @@ -29,7 +29,7 @@ array - The array. + The array or object to be iterated on.