[Python-3000-checkins] r62583 - python/branches/py3k/Doc/library/functions.rst

georg.brandl python-3000-checkins at python.org
Tue Apr 29 23:00:18 CEST 2008


Author: georg.brandl
Date: Tue Apr 29 23:00:18 2008
New Revision: 62583

Log:
Fix var name.


Modified:
   python/branches/py3k/Doc/library/functions.rst

Modified: python/branches/py3k/Doc/library/functions.rst
==============================================================================
--- python/branches/py3k/Doc/library/functions.rst	(original)
+++ python/branches/py3k/Doc/library/functions.rst	Tue Apr 29 23:00:18 2008
@@ -671,7 +671,7 @@
 
 .. function:: next(iterator[, default])
 
-   Retrieve the next item from the *iterable* by calling its :meth:`__next__`
+   Retrieve the next item from the *iterator* by calling its :meth:`__next__`
    method.  If *default* is given, it is returned if the iterator is exhausted,
    otherwise :exc:`StopIteration` is raised.
 


More information about the Python-3000-checkins mailing list