[Python-checkins] r62370 - python/trunk/Doc/library/itertools.rst

andrew.kuchling python-checkins at python.org
Thu Apr 17 22:44:06 CEST 2008


Author: andrew.kuchling
Date: Thu Apr 17 22:44:06 2008
New Revision: 62370

Log:
Typo fixes

Modified:
   python/trunk/Doc/library/itertools.rst

Modified: python/trunk/Doc/library/itertools.rst
==============================================================================
--- python/trunk/Doc/library/itertools.rst	(original)
+++ python/trunk/Doc/library/itertools.rst	Thu Apr 17 22:44:06 2008
@@ -444,8 +444,8 @@
    ``product(A, B)`` returns the same as ``((x,y) for x in A for y in B)``.
 
    The nested loops cycle like an odometer with the rightmost element advancing
-   on every iteration.  This pattern creats a lexicographic ordering so that if
-   the inputs iterables are sorted, the product tuples are emitted in sorted
+   on every iteration.  This pattern creates a lexicographic ordering so that if
+   the input's iterables are sorted, the product tuples are emitted in sorted
    order.
 
    To compute the product of an iterable with itself, specify the number of


More information about the Python-checkins mailing list