]> granicus.if.org Git - python/commitdiff
Minor wording tweak for itertools documentation (#4893)
authorRaymond Hettinger <rhettinger@users.noreply.github.com>
Fri, 15 Dec 2017 21:17:55 +0000 (13:17 -0800)
committerGitHub <noreply@github.com>
Fri, 15 Dec 2017 21:17:55 +0000 (13:17 -0800)
Doc/library/itertools.rst

index a91894059d00075b5c9832a8fd81e3843acdd50a..5af5422eefee6756d6fb335abbc30e43dfdb50ad 100644 (file)
@@ -32,7 +32,7 @@ operator can be mapped across two vectors to form an efficient dot-product:
 ``sum(map(operator.mul, vector1, vector2))``.
 
 
-**Infinite Iterators:**
+**Infinite iterators:**
 
 ==================  =================       =================================================               =========================================
 Iterator            Arguments               Results                                                         Example
@@ -61,7 +61,7 @@ Iterator                        Arguments                       Results
 :func:`zip_longest`             p, q, ...                       (p[0], q[0]), (p[1], q[1]), ...                     ``zip_longest('ABCD', 'xy', fillvalue='-') --> Ax By C- D-``
 ============================    ============================    =================================================   =============================================================
 
-**Combinatoric generators:**
+**Combinatoric iterators:**
 
 ==============================================   ====================       =============================================================
 Iterator                                         Arguments                  Results