From: Gugubo <29143981+Gugubo@users.noreply.github.com> Date: Mon, 16 Dec 2024 17:08:25 +0000 (+0100) Subject: Fix typo in itertools docs (gh-127995) X-Git-Tag: v3.14.0a3~7 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e4981e33b82ac14cca0f2d9b95257301fa201810;p=thirdparty%2FPython%2Fcpython.git Fix typo in itertools docs (gh-127995) --- diff --git a/Doc/library/itertools.rst b/Doc/library/itertools.rst index d1fb952e36f6..eb61453718bd 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() `_ instead.