summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew M. Kuchling <amk@amk.ca>2009-03-30 23:08:24 +0000
committerAndrew M. Kuchling <amk@amk.ca>2009-03-30 23:08:24 +0000
commitefa97718e65d200a947d3d2623801f52d1dc1428 (patch)
treeae8609497c729c07a6b21ea349eda7f177d5cc8f
parent3db8a3432bd84b58bdc7da2c9872777c537a4d09 (diff)
downloadcpython-git-efa97718e65d200a947d3d2623801f52d1dc1428.tar.gz
typo fix
-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 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):