summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrew Kuchling <amk@amk.ca>2013-06-21 12:00:58 (GMT)
committerAndrew Kuchling <amk@amk.ca>2013-06-21 12:00:58 (GMT)
commitedb4260ffdda734ec028d56f4eb2006890c35f4c (patch)
treebcd29a40b0465754ef5ae7778c0ae2288d071e7e
parentb003ffa0ab7b55d31980b983ad5db2cf5068edaf (diff)
downloadcpython-edb4260ffdda734ec028d56f4eb2006890c35f4c.zip
cpython-edb4260ffdda734ec028d56f4eb2006890c35f4c.tar.gz
cpython-edb4260ffdda734ec028d56f4eb2006890c35f4c.tar.bz2
Closes #18218: use correct variable name for starting point
-rw-r--r--Doc/library/itertools.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/itertools.rst b/Doc/library/itertools.rst
index a0745d7..0ee93ed 100644
--- a/Doc/library/itertools.rst
+++ b/Doc/library/itertools.rst
@@ -278,7 +278,7 @@ loops that truncate the stream.
.. function:: count(start=0, step=1)
- Make an iterator that returns evenly spaced values starting with *n*. Often
+ Make an iterator that returns evenly spaced values starting with number *start*. Often
used as an argument to :func:`map` to generate consecutive data points.
Also, used with :func:`zip` to add sequence numbers. Equivalent to::