r77846 - /trunk/libtie-array-iterable-perl/Iterable.pm

gregoa at users.alioth.debian.org gregoa at users.alioth.debian.org
Tue Jul 26 09:27:37 UTC 2011


Author: gregoa
Date: Tue Jul 26 09:27:36 2011
New Revision: 77846

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=77846
Log:
un-apply patch

Modified:
    trunk/libtie-array-iterable-perl/Iterable.pm

Modified: trunk/libtie-array-iterable-perl/Iterable.pm
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libtie-array-iterable-perl/Iterable.pm?rev=77846&op=diff
==============================================================================
--- trunk/libtie-array-iterable-perl/Iterable.pm (original)
+++ trunk/libtie-array-iterable-perl/Iterable.pm Tue Jul 26 09:27:36 2011
@@ -381,12 +381,12 @@
 no way to do this without maintaining some additional state information.
 
 The concept of iterators is that each iterator is a bookmark to a spot, 
-typically considered between two elements.  While there is some overhead
+typically concidered between two elements.  While there is some overhead
 to the use of iterators, it allows elements to be added or removed from 
 the list, with the iterator adjusting appropriate, and allows the state
 of a list traversal to be saved when needed.  
 
-For example, the following Perl code will drop into an endless block 
+For example, the following perl code will drop into an endless block 
 (this mimics the functionality of the above code):
 
    my @array = (0..10);
@@ -395,7 +395,7 @@
 	   if ( $i == 3 ) { unshift @a, ( 11..15 ); } 
    }
 
-However, the synopsis code will not be impaired when the unshift operation
+However, the synopsis code will not be impared when the unshift operation
 is performed; the iteration will simply continue at the next element, 
 being 4 in this case.
 
@@ -593,7 +593,7 @@
 
 Advances the iterator to the very end position.  Note that this is the
 undefined state, and the only way to resume traversal is to move to
-preceding elements.  Also note that for a backwards iterator, this
+preceeding elements.  Also note that for a backwards iterator, this
 means to move to the beginning of the array.  Parentheses are not required.
 
 




More information about the Pkg-perl-cvs-commits mailing list