From 43cbb3df9a1da7666ed76b83d206ad804618017f Mon Sep 17 00:00:00 2001 From: "Miss Islington (bot)" <31488909+miss-islington@users.noreply.github.com> Date: Mon, 31 Oct 2022 10:29:30 -0700 Subject: [PATCH] Doc: Fix sphinx-lint issues (GH-98911) They were introduced right between GH-98441 and GH-98408. (cherry picked from commit c1c3be0f9dc414bfae9a5718451ca217751ac687) Co-authored-by: Julien Palard --- Doc/library/itertools.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/library/itertools.rst b/Doc/library/itertools.rst index eb4c8088c77..3d93c2c0573 100644 --- a/Doc/library/itertools.rst +++ b/Doc/library/itertools.rst @@ -723,7 +723,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()``.