[3.13] Fix typo in itertools docs (gh-127995) (gh-127996)

This commit is contained in:
Miss Islington (bot) 2024-12-16 18:20:14 +01:00 committed by GitHub
parent 8e143b2886
commit 231c93923d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

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