]> granicus.if.org Git - python/commitdiff
typo fix
authorAndrew M. Kuchling <amk@amk.ca>
Mon, 30 Mar 2009 23:08:24 +0000 (23:08 +0000)
committerAndrew M. Kuchling <amk@amk.ca>
Mon, 30 Mar 2009 23:08:24 +0000 (23:08 +0000)
Doc/library/itertools.rst

index 3a57cd9011a6f36df85cc85df3da20b7852d014a..0b7907295d6f1f76c9d4f8e5b6ef8027da7b2982 100644 (file)
@@ -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):