From 155514e434deb46f18debcec8c843f10c5f6bb69 Mon Sep 17 00:00:00 2001 From: Nikita Popov Date: Mon, 23 Apr 2012 17:37:49 +0000 Subject: [PATCH] Commit typo fix by Kevin Abel git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@325428 c90b9560-bf6c-de11-be94-00142212c4b1 --- reference/spl/recursivefilteriterator/construct.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reference/spl/recursivefilteriterator/construct.xml b/reference/spl/recursivefilteriterator/construct.xml index 2dc549ecf5..04c008dc11 100644 --- a/reference/spl/recursivefilteriterator/construct.xml +++ b/reference/spl/recursivefilteriterator/construct.xml @@ -58,7 +58,7 @@ class TestsOnlyFilter extends RecursiveFilterIterator { } } -$arrary = array("test1", array("taste2", "test3", "test4"), "test5"); +$array = array("test1", array("taste2", "test3", "test4"), "test5"); $iterator = new RecursiveArrayIterator($array); $filter = new TestsOnlyFilter($iterator);