]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Doc: Fix sphinx-lint issues (GH-98911)
authorJulien Palard <julien@palard.fr>
Mon, 31 Oct 2022 15:30:29 +0000 (16:30 +0100)
committerGitHub <noreply@github.com>
Mon, 31 Oct 2022 15:30:29 +0000 (16:30 +0100)
They were introduced right between GH-98441 and GH-98408.

Doc/library/itertools.rst

index 4f5b61ce62cb88e0332085ece927fea22c6fcb07..0b5978505a96729f45ae1bd8b07121bd979de549 100644 (file)
@@ -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()``.