summaryrefslogtreecommitdiff
path: root/ext/spl/examples/recursivecomparedualiterator.inc
diff options
context:
space:
mode:
Diffstat (limited to 'ext/spl/examples/recursivecomparedualiterator.inc')
-rw-r--r--ext/spl/examples/recursivecomparedualiterator.inc6
1 files changed, 3 insertions, 3 deletions
diff --git a/ext/spl/examples/recursivecomparedualiterator.inc b/ext/spl/examples/recursivecomparedualiterator.inc
index 75265c1d58..5b63e9f0b3 100644
--- a/ext/spl/examples/recursivecomparedualiterator.inc
+++ b/ext/spl/examples/recursivecomparedualiterator.inc
@@ -33,7 +33,7 @@ class RecursiveCompareDualIterator extends RecursiveIteratorIterator
}
/** Rewind iteration andcomparison process. Starting with $equal = true.
- */
+ */
function rewind()
{
$this->equal = true;
@@ -49,7 +49,7 @@ class RecursiveCompareDualIterator extends RecursiveIteratorIterator
&& !$this->getInnerIterator()->getRHS()->valid();
}
- /** @return whether both inner iterators are valid and have identical
+ /** @return whether both inner iterators are valid and have identical
* current and key values or both are non valid.
*/
function areIdentical()
@@ -57,7 +57,7 @@ class RecursiveCompareDualIterator extends RecursiveIteratorIterator
return $this->equal && $this->getInnerIterator()->areIdentical();
}
- /** @return whether both inner iterators are valid and have equal current
+ /** @return whether both inner iterators are valid and have equal current
* and key values or both are non valid.
*/
function areEqual()