diff options
author | Julien Palard <julien@palard.fr> | 2022-10-31 15:30:29 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-31 15:30:29 (GMT) |
commit | c1c3be0f9dc414bfae9a5718451ca217751ac687 (patch) | |
tree | 41c8fcd7841c9788230a2b83958397a8797c82d9 /Doc | |
parent | 880bafc574bcd811dd7244f9a82056430b489996 (diff) | |
download | cpython-c1c3be0f9dc414bfae9a5718451ca217751ac687.zip cpython-c1c3be0f9dc414bfae9a5718451ca217751ac687.tar.gz cpython-c1c3be0f9dc414bfae9a5718451ca217751ac687.tar.bz2 |
Doc: Fix sphinx-lint issues (GH-98911)
They were introduced right between GH-98441 and GH-98408.
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/itertools.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/itertools.rst b/Doc/library/itertools.rst index 4f5b61c..0b59785 100644 --- a/Doc/library/itertools.rst +++ b/Doc/library/itertools.rst @@ -762,7 +762,7 @@ The primary purpose of the itertools recipes is educational. The recipes show various ways of thinking about individual tools — for example, that ``chain.from_iterable`` is related to the concept of flattening. The recipes also give ideas about ways that the tools can be combined — for example, how -`compress()` and `range()` can work together. The recipes also show patterns +``compress()`` and ``range()`` can work together. The recipes also show patterns for using itertools with the :mod:`operator` and :mod:`collections` modules as well as with the built-in itertools such as ``map()``, ``filter()``, ``reversed()``, and ``enumerate()``. |