From d35697eccdcbab78438ace5215a6deac3c45c439 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 047d805eda628a..a82fd8630b7b6a 100644 --- a/Doc/library/itertools.rst +++ b/Doc/library/itertools.rst @@ -664,7 +664,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.