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

index 14a348cf20a46186eac7a280a96e32a506f8fb43..16a0fa9638fc2499848dae08abb98dcfc40b1c01 100644 (file)
@@ -51,7 +51,7 @@ form an efficient dot-product: ``sum(map(operator.add, vector1, vector2))``.
     :func:`filterfalse`     pred, seq                       elements of seq where pred(elem) is False
     :func:`groupby`         iterable[, keyfunc]             sub-iterators grouped by value of keyfunc(v)
     :func:`islice`          seq, [start,] stop [, step]     elements from seq[start:stop:step]
-    :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:`zip_longest`     p, q, ...                       (p[0], q[0]), (p[1], q[1]), ...