Minor wording tweak for itertools documentation (#4893)

This commit is contained in:
Raymond Hettinger 2017-12-15 13:17:55 -08:00 committed by GitHub
parent d924fa523d
commit 6693d7af66
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

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