diff options
author | Raymond Hettinger <rhettinger@users.noreply.github.com> | 2017-12-15 21:17:55 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-12-15 21:17:55 (GMT) |
commit | 6693d7af6670f8bda331e0b63bb77fce2e3efe9c (patch) | |
tree | 78e213c8fea746dbf22103d18b414834dd1aa764 /Doc/library | |
parent | d924fa523df766dbf2f8b6a28ae502eb3433bfe5 (diff) | |
download | cpython-6693d7af6670f8bda331e0b63bb77fce2e3efe9c.zip cpython-6693d7af6670f8bda331e0b63bb77fce2e3efe9c.tar.gz cpython-6693d7af6670f8bda331e0b63bb77fce2e3efe9c.tar.bz2 |
Minor wording tweak for itertools documentation (#4893)
Diffstat (limited to 'Doc/library')
-rw-r--r-- | Doc/library/itertools.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/itertools.rst b/Doc/library/itertools.rst index a918940..5af5422 100644 --- a/Doc/library/itertools.rst +++ b/Doc/library/itertools.rst @@ -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 |