summaryrefslogtreecommitdiffstats
path: root/Doc/library/itertools.rst
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2009-03-10 13:04:30 (GMT)
committerRaymond Hettinger <python@rcn.com>2009-03-10 13:04:30 (GMT)
commit8f19598f78fe767b0ae91d6265eb193cb08820eb (patch)
treebcc530f01a511eb63ac82e039cb912f8ae3bd298 /Doc/library/itertools.rst
parent56411aac79ee3c55ce11cea55ec7921f5d96654a (diff)
downloadcpython-8f19598f78fe767b0ae91d6265eb193cb08820eb.zip
cpython-8f19598f78fe767b0ae91d6265eb193cb08820eb.tar.gz
cpython-8f19598f78fe767b0ae91d6265eb193cb08820eb.tar.bz2
Fix typo.
Diffstat (limited to 'Doc/library/itertools.rst')
-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 1e946b1..f1d5aa8 100644
--- a/Doc/library/itertools.rst
+++ b/Doc/library/itertools.rst
@@ -56,7 +56,7 @@ form an efficient dot-product: ``sum(imap(operator.add, vector1, vector2))``.
: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), func(p1, q1), ...
- :func:`starmap` func, seq func(\*seq[0]), fun(\*seq[1]), ...
+ :func:`starmap` func, seq func(\*seq[0]), func(\*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
:func:`izip` p, q, ... (p[0], q[0]), (p[1], q[1]), ...