[Python-checkins] r85008 - python/branches/py3k/Doc/library/itertools.rst
georg.brandl
python-checkins at python.org
Sat Sep 25 15:30:03 CEST 2010
Author: georg.brandl
Date: Sat Sep 25 15:30:03 2010
New Revision: 85008
Log:
#9944: fix typo.
Modified:
python/branches/py3k/Doc/library/itertools.rst
Modified: python/branches/py3k/Doc/library/itertools.rst
==============================================================================
--- python/branches/py3k/Doc/library/itertools.rst (original)
+++ python/branches/py3k/Doc/library/itertools.rst Sat Sep 25 15:30:03 2010
@@ -592,7 +592,7 @@
# feed the entire iterator into a zero-length deque
collections.deque(iterator, maxlen=0)
else:
- # advance to the emtpy slice starting at position n
+ # advance to the empty slice starting at position n
next(islice(iterator, n, n), None)
def nth(iterable, n, default=None):
More information about the Python-checkins
mailing list