[3.12] Fix typo in itertools docs (gh-127995) (gh-127997)

This commit is contained in:
Miss Islington (bot) 2024-12-16 18:18:15 +01:00 committed by GitHub
parent b1cc62ae0f
commit 073b52bc53
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View 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.