]> granicus.if.org Git - python/commitdiff
Merged revisions 77675 via svnmerge from
authorEzio Melotti <ezio.melotti@gmail.com>
Thu, 21 Jan 2010 20:57:24 +0000 (20:57 +0000)
committerEzio Melotti <ezio.melotti@gmail.com>
Thu, 21 Jan 2010 20:57:24 +0000 (20:57 +0000)
svn+ssh://pythondev@svn.python.org/python/trunk

........
  r77675 | ezio.melotti | 2010-01-21 22:50:57 +0200 (Thu, 21 Jan 2010) | 1 line

  #7746: rephrase a sentence
........

Doc/library/itertools.rst

index 30035521466263dc531ebab61a83b873cc7ece0a..5eb5806b6dd698e549580dcf3ee46db03705bf93 100644 (file)
@@ -22,7 +22,7 @@ algebra" making it possible to construct specialized tools succinctly and
 efficiently in pure Python.
 
 For instance, SML provides a tabulation tool: ``tabulate(f)`` which produces a
-sequence ``f(0), f(1), ...``.  But, this effect can be achieved in Python
+sequence ``f(0), f(1), ...``.  The same effect can be achieved in Python
 by combining :func:`map` and :func:`count` to form ``map(f, count())``.
 
 These tools and their built-in counterparts also work well with the high-speed