helly           Wed Sep 29 16:27:36 2004 EDT

  Modified files:              
    /php-src/ext/spl/examples   iteratoriterator.inc 
  Log:
  - Speling
  
  
http://cvs.php.net/diff.php/php-src/ext/spl/examples/iteratoriterator.inc?r1=1.1&r2=1.2&ty=u
Index: php-src/ext/spl/examples/iteratoriterator.inc
diff -u php-src/ext/spl/examples/iteratoriterator.inc:1.1 
php-src/ext/spl/examples/iteratoriterator.inc:1.2
--- php-src/ext/spl/examples/iteratoriterator.inc:1.1   Sun Sep 26 17:21:45 2004
+++ php-src/ext/spl/examples/iteratoriterator.inc       Wed Sep 29 16:27:36 2004
@@ -8,7 +8,7 @@
        /** Construct an IteratorIterator from an Iterator or an IteratorAggregate.
         *
         * Classes that only implement Traversable can be wrapped only after 
-        * converting class IteratorItaerator into c code.
+        * converting class IteratorIterator into c code.
         */
        function __construct(Traversable $iterator)
        {
@@ -33,7 +33,7 @@
                return $this->iterator;
        }
 
-       /** \return whetehr the iterator is valid
+       /** \return whether the iterator is valid
         */
        function valid()
        {
@@ -68,7 +68,7 @@
                return $this->iterator->rewind();
        }
 
-       /** The inner iterator must be public becaus ewhen this class will be
+       /** The inner iterator must be private because when this class will be
         * converted to c code it won't no longer be available.
         */
        private $iterator;

-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to