diff options
author | Gugubo <29143981+Gugubo@users.noreply.github.com> | 2024-12-16 17:08:25 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-12-16 17:08:25 (GMT) |
commit | e4981e33b82ac14cca0f2d9b95257301fa201810 (patch) | |
tree | 51130232ab7dfe685a78482a293dd19413904b92 | |
parent | 081673801e3d47d931d2e2b6a4a1515e1207d938 (diff) | |
download | cpython-e4981e33b82ac14cca0f2d9b95257301fa201810.zip cpython-e4981e33b82ac14cca0f2d9b95257301fa201810.tar.gz cpython-e4981e33b82ac14cca0f2d9b95257301fa201810.tar.bz2 |
Fix typo in itertools docs (gh-127995)
-rw-r--r-- | Doc/library/itertools.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/itertools.rst b/Doc/library/itertools.rst index d1fb952..eb61453 100644 --- a/Doc/library/itertools.rst +++ b/Doc/library/itertools.rst @@ -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. |