Skip to content
Prev Previous commit
Next Next commit
Update functions.rst
  • Loading branch information
Adminixtrator authored Jul 18, 2021
commit 9cc0f431c2363181652b1e79ba4d81d5f08ebde4
2 changes: 1 addition & 1 deletion Doc/library/functions.rst
Original file line number Diff line number Diff line change
Expand Up @@ -479,7 +479,7 @@ are always available. They are listed here in alphabetical order.
.. function:: enumerate(iterable, start=0)

Return an enumerate object. *iterable* must be a sequence, an
:term:`iterator`, or some other object that supports iteration.
:term:`iterator`, or some other object which supports iteration.
The :meth:`~iterator.__next__` method of the iterator returned by
:func:`enumerate` returns a tuple containing a count (from *start* which
defaults to 0) and the values obtained from iterating over *iterable*.
Expand Down