From: Andrew Kuchling Date: Fri, 21 Jun 2013 12:00:58 +0000 (-0400) Subject: Closes #18218: use correct variable name for starting point X-Git-Tag: v3.4.0a1~437^2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=edb4260ffdda734ec028d56f4eb2006890c35f4c;p=thirdparty%2FPython%2Fcpython.git Closes #18218: use correct variable name for starting point --- diff --git a/Doc/library/itertools.rst b/Doc/library/itertools.rst index a0745d77ee5f..0ee93edc9a1a 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::