]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Closes #18218: use correct variable name for starting point
authorAndrew Kuchling <amk@amk.ca>
Fri, 21 Jun 2013 12:00:58 +0000 (08:00 -0400)
committerAndrew Kuchling <amk@amk.ca>
Fri, 21 Jun 2013 12:00:58 +0000 (08:00 -0400)
Doc/library/itertools.rst

index a0745d77ee5f9ac579331df1d99d151df952e443..0ee93edc9a1a11201bd3ba509f1be7f123e154e0 100644 (file)
@@ -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::