summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2009-03-09 11:39:03 (GMT)
committerRaymond Hettinger <python@rcn.com>2009-03-09 11:39:03 (GMT)
commitd31d294e894eb13f0fb1b6185c4e9d0b928fa224 (patch)
treedc433cb15865b9ba2d18454f17deb40406580df0 /Doc
parentf4362d12c7bc91ae85e706714b1938931fa93018 (diff)
downloadcpython-d31d294e894eb13f0fb1b6185c4e9d0b928fa224.zip
cpython-d31d294e894eb13f0fb1b6185c4e9d0b928fa224.tar.gz
cpython-d31d294e894eb13f0fb1b6185c4e9d0b928fa224.tar.bz2
Issue 5443: Fix typo.
Diffstat (limited to 'Doc')
-rw-r--r--Doc/library/itertools.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/itertools.rst b/Doc/library/itertools.rst
index 8bdf625..baa3566 100644
--- a/Doc/library/itertools.rst
+++ b/Doc/library/itertools.rst
@@ -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