Skip to content

Commit

Permalink
Minor wording tweak for itertools documentation (GH-4893) (#4894)
Browse files Browse the repository at this point in the history
(cherry picked from commit 6693d7a)
  • Loading branch information
miss-islington authored and rhettinger committed Dec 15, 2017
1 parent 5a9f379 commit dab4cf2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Doc/library/itertools.rst
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit dab4cf2

Please sign in to comment.