]> granicus.if.org Git - python/commitdiff
Issue 5443: Fix typo.
authorRaymond Hettinger <python@rcn.com>
Mon, 9 Mar 2009 11:39:03 +0000 (11:39 +0000)
committerRaymond Hettinger <python@rcn.com>
Mon, 9 Mar 2009 11:39:03 +0000 (11:39 +0000)
Doc/library/itertools.rst

index 8bdf625c18da5b0f7ce7f5c5ba5ec8b6065c4052..baa3566edfaf7e9fda11564347a51919633f2ddc 100644 (file)
@@ -54,7 +54,7 @@ form an efficient dot-product: ``sum(imap(operator.add, vector1, vector2))``.
     :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