Commit 6693d7af authored by Raymond Hettinger's avatar Raymond Hettinger Committed by GitHub

Minor wording tweak for itertools documentation (#4893)

parent d924fa52
...@@ -32,7 +32,7 @@ operator can be mapped across two vectors to form an efficient dot-product: ...@@ -32,7 +32,7 @@ operator can be mapped across two vectors to form an efficient dot-product:
``sum(map(operator.mul, vector1, vector2))``. ``sum(map(operator.mul, vector1, vector2))``.
**Infinite Iterators:** **Infinite iterators:**
================== ================= ================================================= ========================================= ================== ================= ================================================= =========================================
Iterator Arguments Results Example Iterator Arguments Results Example
...@@ -61,7 +61,7 @@ Iterator Arguments Results ...@@ -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-`` :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 Iterator Arguments Results
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment