summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
Diffstat (limited to 'Doc')
-rw-r--r--Doc/library/functions.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/functions.rst b/Doc/library/functions.rst
index cc71428..658d676 100644
--- a/Doc/library/functions.rst
+++ b/Doc/library/functions.rst
@@ -505,9 +505,9 @@ are always available. They are listed here in alphabetical order.
Equivalent to::
- def enumerate(sequence, start=0):
+ def enumerate(iterable, start=0):
n = start
- for elem in sequence:
+ for elem in iterable:
yield n, elem
n += 1