diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2017-12-15 21:28:50 (GMT) |
---|---|---|
committer | Raymond Hettinger <rhettinger@users.noreply.github.com> | 2017-12-15 21:28:50 (GMT) |
commit | dab4cf210cfbc1ecc9def63c1929ec801c1a0068 (patch) | |
tree | eccd94e9f93f324744395a17b1f04ea93d1bd055 /Doc | |
parent | 5a9f379435c1dbe812da885b2aa869c3dbf65f35 (diff) | |
download | cpython-dab4cf210cfbc1ecc9def63c1929ec801c1a0068.zip cpython-dab4cf210cfbc1ecc9def63c1929ec801c1a0068.tar.gz cpython-dab4cf210cfbc1ecc9def63c1929ec801c1a0068.tar.bz2 |
Minor wording tweak for itertools documentation (GH-4893) (#4894)
(cherry picked from commit 6693d7af6670f8bda331e0b63bb77fce2e3efe9c)
Diffstat (limited to 'Doc')
-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 594af39..d01ce8f 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 |