summaryrefslogtreecommitdiff
path: root/ext/spl/spl.php
diff options
context:
space:
mode:
authorGeorge Schlossnagle <gschlossnagle@php.net>2004-08-29 13:37:10 +0000
committerGeorge Schlossnagle <gschlossnagle@php.net>2004-08-29 13:37:10 +0000
commit1901b9d90e2c0df99bb471868144db9172443445 (patch)
treeb1704440daf1a3f37f0c972d158db86e535a84bd /ext/spl/spl.php
parent1e708a5aeb30711f8b7b2a811377a13f2b23a8c9 (diff)
downloadphp-git-1901b9d90e2c0df99bb471868144db9172443445.tar.gz
A little cleanup on the language refinements.
Diffstat (limited to 'ext/spl/spl.php')
-rwxr-xr-xext/spl/spl.php12
1 files changed, 6 insertions, 6 deletions
diff --git a/ext/spl/spl.php b/ext/spl/spl.php
index cfd07b5bb2..6ad94f7ea2 100755
--- a/ext/spl/spl.php
+++ b/ext/spl/spl.php
@@ -541,11 +541,11 @@ class RecursiveDirectoryIterator extends DirectoryIterator implements RecursiveI
* \brief recursive SimpleXML_Element iterator
*
* The SimpleXMLIterator implements the RecursiveIterator interface. This
- * allows to iterate over all elements using foreach or an appropriate while
- * construct just like SimpleXMLElement does. But using the foreach construct,
- * you will also iterate over the subelements, because for every element which
- * has subelements hasChildren() returns true what results in a call to
- * getChildren() which then returns the iterator for that sub element.
+ * allows iteration over all elements using foreach or an appropriate while
+ * construct, just like SimpleXMLElement does. When using the foreach construct,
+ * you will also iterate over the subelements. For every element which
+ * has subelements, hasChildren() returns true. This will trigger a call to
+ * getChildren() which returns the iterator for that sub element.
*/
class SimpleXMLIterator extends SimpleXMLElement implements RecursiveIterator
{
@@ -558,4 +558,4 @@ class SimpleXMLIterator extends SimpleXMLElement implements RecursiveIterator
function getChildren();
}
-?> \ No newline at end of file
+?>