[Python-checkins] r47185 - sandbox/trunk/Doc/functional.rst

andrew.kuchling python-checkins at python.org
Fri Jun 30 23:41:12 CEST 2006


Author: andrew.kuchling
Date: Fri Jun 30 23:41:11 2006
New Revision: 47185

Modified:
   sandbox/trunk/Doc/functional.rst
Log:
Typo fix

Modified: sandbox/trunk/Doc/functional.rst
==============================================================================
--- sandbox/trunk/Doc/functional.rst	(original)
+++ sandbox/trunk/Doc/functional.rst	Fri Jun 30 23:41:11 2006
@@ -363,7 +363,7 @@
         stripped_list = [line.strip() for line in line_list
                          if line != ""]
 
-Note that in all case the resulting ``stripped_list`` is a Python list
+Note that in all cases the resulting ``stripped_list`` is a Python list
 containing the resulting lines, not an iterator.  This means that list
 comprehensions aren't very useful if you're working with iterators
 that return an infinite or a very large stream of data.  Later we'll


More information about the Python-checkins mailing list