diff options
author | Andrew M. Kuchling <amk@amk.ca> | 2009-03-30 23:08:24 (GMT) |
---|---|---|
committer | Andrew M. Kuchling <amk@amk.ca> | 2009-03-30 23:08:24 (GMT) |
commit | efa97718e65d200a947d3d2623801f52d1dc1428 (patch) | |
tree | ae8609497c729c07a6b21ea349eda7f177d5cc8f /Doc/library/itertools.rst | |
parent | 3db8a3432bd84b58bdc7da2c9872777c537a4d09 (diff) | |
download | cpython-efa97718e65d200a947d3d2623801f52d1dc1428.zip cpython-efa97718e65d200a947d3d2623801f52d1dc1428.tar.gz cpython-efa97718e65d200a947d3d2623801f52d1dc1428.tar.bz2 |
typo fix
Diffstat (limited to 'Doc/library/itertools.rst')
-rw-r--r-- | Doc/library/itertools.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/itertools.rst b/Doc/library/itertools.rst index 3a57cd9..0b79072 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): |