Fix typo in itertools docs (gh-127995)

This commit is contained in:
Gugubo 2024-12-16 18:08:25 +01:00 committed by GitHub
parent 081673801e
commit e4981e33b8
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

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