From c002e1a6adb95c48e7b9125fffca0f28f1be1f98 Mon Sep 17 00:00:00 2001 From: Gugubo <29143981+Gugubo@users.noreply.github.com> Date: Mon, 16 Dec 2024 18:08:25 +0100 Subject: [PATCH] Fix typo in itertools docs (gh-127995) (cherry picked from commit e4981e33b82ac14cca0f2d9b95257301fa201810) Co-authored-by: Gugubo <29143981+Gugubo@users.noreply.github.com> --- Doc/library/itertools.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/library/itertools.rst b/Doc/library/itertools.rst index cc7b63ea9cefcd..3b07be96200245 100644 --- a/Doc/library/itertools.rst +++ b/Doc/library/itertools.rst @@ -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() `_ instead.