[Python-checkins] r70263 - python/branches/release26-maint/Doc/library/itertools.rst

raymond.hettinger python-checkins at python.org
Mon Mar 9 12:39:03 CET 2009


Author: raymond.hettinger
Date: Mon Mar  9 12:39:03 2009
New Revision: 70263

Log:
Issue 5443: Fix typo.

Modified:
   python/branches/release26-maint/Doc/library/itertools.rst

Modified: python/branches/release26-maint/Doc/library/itertools.rst
==============================================================================
--- python/branches/release26-maint/Doc/library/itertools.rst	(original)
+++ python/branches/release26-maint/Doc/library/itertools.rst	Mon Mar  9 12:39:03 2009
@@ -54,7 +54,7 @@
     :func:`ifilter`         pred, seq                       elements of seq where pred(elem) is True
     :func:`ifilterfalse`    pred, seq                       elements of seq where pred(elem) is False
     :func:`islice`          seq, [start,] stop [, step]     elements from seq[start:stop:step]
-    :func:`imap`            func, p, q, ...                 func(p0, q0), fun(p1, q1), ...
+    :func:`imap`            func, p, q, ...                 func(p0, q0), func(p1, q1), ...
     :func:`starmap`         func, seq                       func(\*seq[0]), fun(\*seq[1]), ...
     :func:`tee`             it, n                           it1, it2 , ... itn  splits one iterator into n
     :func:`takewhile`       pred, seq                       seq[0], seq[1], until pred fails


More information about the Python-checkins mailing list