Minor wording tweak for itertools documentation (GH-4893) (#4894)

(cherry picked from commit 6693d7af66)
This commit is contained in:
Miss Islington (bot) 2017-12-15 13:28:50 -08:00 committed by Raymond Hettinger
parent 5a9f379435
commit dab4cf210c

View 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