From: Raymond Hettinger Date: Thu, 12 Mar 2009 00:31:58 +0000 (+0000) Subject: Issue 5477: Fix buglet in the itertools documentation. X-Git-Tag: v2.7a1~1867 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=efa7c138b603915e7064055ea8d7718d96d30cbc;p=python Issue 5477: Fix buglet in the itertools documentation. --- diff --git a/Doc/library/itertools.rst b/Doc/library/itertools.rst index f1d5aa822c..3a57cd9011 100644 --- a/Doc/library/itertools.rst +++ b/Doc/library/itertools.rst @@ -28,9 +28,10 @@ sequence ``f(0), f(1), ...``. This toolbox provides :func:`imap` and :func:`count` which can be combined to form ``imap(f, count())`` to produce an equivalent result. -The tools also work well with the high-speed functions in the :mod:`operator` -module. For example, the plus-operator can be mapped across two vectors to -form an efficient dot-product: ``sum(imap(operator.add, vector1, vector2))``. +These tools and their built-in counterparts also work well with the high-speed +functions in the :mod:`operator` module. For example, the multiplication +operator can be mapped across two vectors to form an efficient dot-product: +``sum(imap(operator.mul, vector1, vector2))``. **Infinite Iterators:**