]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Doc: Fix sphinx-lint issues (GH-98911)
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Mon, 31 Oct 2022 17:29:30 +0000 (10:29 -0700)
committerGitHub <noreply@github.com>
Mon, 31 Oct 2022 17:29:30 +0000 (10:29 -0700)
They were introduced right between GH-98441 and GH-98408.
(cherry picked from commit c1c3be0f9dc414bfae9a5718451ca217751ac687)

Co-authored-by: Julien Palard <julien@palard.fr>
Doc/library/itertools.rst

index eb4c8088c771a1dc250781349dbec26d6a1aecde..3d93c2c0573e09747b1b877fa728b6b5e647d9cb 100644 (file)
@@ -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()``.