]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Fix typo in itertools docs (gh-127995)
authorGugubo <29143981+Gugubo@users.noreply.github.com>
Mon, 16 Dec 2024 17:08:25 +0000 (18:08 +0100)
committerGitHub <noreply@github.com>
Mon, 16 Dec 2024 17:08:25 +0000 (11:08 -0600)
Doc/library/itertools.rst

index d1fb952e36f686887904a0a6b7cc3986ec747eb9..eb61453718bd3c0a71d2a8975782ef5d7d9c63f6 100644 (file)
@@ -681,7 +681,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.