File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -246,9 +246,9 @@ Built-in functions such as :func:`max` and :func:`min` can take a single
246246iterator argument and will return the largest or smallest element. The ``"in" ``
247247and ``"not in" `` operators also support iterators: ``X in iterator `` is true if
248248X is found in the stream returned by the iterator. You'll run into obvious
249- problems if the iterator is infinite; ``max() ``, ``min() ``, and `` "not in" ``
249+ problems if the iterator is infinite; ``max() ``, ``min() ``
250250will never return, and if the element X never appears in the stream, the
251- ``"in" `` operator won't return either.
251+ ``"in" `` and `` "not in" `` operators won't return either.
252252
253253Note that you can only go forward in an iterator; there's no way to get the
254254previous element, reset the iterator, or make a copy of it. Iterator objects
You can’t perform that action at this time.
0 commit comments