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

index 047d805eda628a62bf13e8eb61d692ad548d6cea..a82fd8630b7b6aa8f25ec0a8f66bc6050e6fbdb0 100644 (file)
@@ -664,7 +664,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.