]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
[3.13] Fix typo in itertools docs (gh-127995) (gh-127996)
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Mon, 16 Dec 2024 17:20:14 +0000 (18:20 +0100)
committerGitHub <noreply@github.com>
Mon, 16 Dec 2024 17:20:14 +0000 (11:20 -0600)
Doc/library/itertools.rst

index cc7b63ea9cefcdce9d6f10ce6ea56fff5bcb1987..3b07be9620024579d4deaf041a96f84c27cbde85 100644 (file)
@@ -686,7 +686,7 @@ loops that truncate the stream.
    consumed from the input iterator and there is no way to access it.
    This could be an issue if an application wants to further consume the
    input iterator after *takewhile* has been run to exhaustion.  To work
-   around this problem, consider using `more-iterools before_and_after()
+   around this problem, consider using `more-itertools before_and_after()
    <https://more-itertools.readthedocs.io/en/stable/api.html#more_itertools.before_and_after>`_
    instead.