commit | d9404b57411f7d2e0bb8333a22c805d28d0bb477 | [log] [tgz] |
---|---|---|
author | Raymond Hettinger <python@rcn.com> | Sat Dec 04 20:51:36 2010 +0000 |
committer | Raymond Hettinger <python@rcn.com> | Sat Dec 04 20:51:36 2010 +0000 |
tree | b6126acd808aceb2e0d61908866d77d3b7fa942b | |
parent | 41ea8ae667625edd662bffc328efeec50a2d82f5 [diff] [blame] |
Doc nit.
diff --git a/Doc/library/itertools.rst b/Doc/library/itertools.rst index 3c9f334..2736263 100644 --- a/Doc/library/itertools.rst +++ b/Doc/library/itertools.rst
@@ -96,7 +96,7 @@ total = next(it) yield total for element in it: - total += element + total = total + element yield total .. versionadded:: 3.2