From: Andrew M. Kuchling Date: Mon, 30 Mar 2009 23:08:24 +0000 (+0000) Subject: typo fix X-Git-Tag: v2.7a1~1723 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=efa97718e65d200a947d3d2623801f52d1dc1428;p=python typo fix --- diff --git a/Doc/library/itertools.rst b/Doc/library/itertools.rst index 3a57cd9011..0b7907295d 100644 --- a/Doc/library/itertools.rst +++ b/Doc/library/itertools.rst @@ -216,7 +216,7 @@ loops that truncate the stream. Make an iterator that filters elements from *data* returning only those that have a corresponding element in *selectors* that evaluates to ``True``. - Stops when either the *data* or *selectors* iterables have been exhausted. + Stops when either the *data* or *selectors* iterables has been exhausted. Equivalent to:: def compress(data, selectors):