]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
#3671: Typo fix
authorAndrew M. Kuchling <amk@amk.ca>
Fri, 5 Sep 2008 15:15:56 +0000 (15:15 +0000)
committerAndrew M. Kuchling <amk@amk.ca>
Fri, 5 Sep 2008 15:15:56 +0000 (15:15 +0000)
Doc/whatsnew/2.6.rst

index 951c46a0fe72105b4ce40746d2005011dbf9ef74..07aca5056cb40942fd5d1e1d160b58cb37aaca98 100644 (file)
@@ -2036,7 +2036,7 @@ changes, or look through the Subversion logs for all the details.
 
   With two iterables, *2N*-tuples are returned. ::
 
-     itertools(product([1,2], [3,4], repeat=2) ->
+     itertools.product([1,2], [3,4], repeat=2) ->
        [(1, 3, 1, 3), (1, 3, 1, 4), (1, 3, 2, 3), (1, 3, 2, 4),
         (1, 4, 1, 3), (1, 4, 1, 4), (1, 4, 2, 3), (1, 4, 2, 4),
         (2, 3, 1, 3), (2, 3, 1, 4), (2, 3, 2, 3), (2, 3, 2, 4),
@@ -3212,7 +3212,8 @@ that may require changes to your code:
 Acknowledgements
 ================
 
-The author would like to thank the following people for offering suggestions,
-corrections and assistance with various drafts of this article:
-Georg Brandl, Steve Brown, Nick Coghlan, Jim Jewett, Kent Johnson, Antoine Pitrou.
+The author would like to thank the following people for offering
+suggestions, corrections and assistance with various drafts of this
+article: Georg Brandl, Steve Brown, Nick Coghlan, Jim Jewett, Kent
+Johnson, Chris Lambacher, Antoine Pitrou.