From 073b52bc53376489be9a3c2c86769a2b020d4a8b Mon Sep 17 00:00:00 2001 From: "Miss Islington (bot)" <31488909+miss-islington@users.noreply.github.com> Date: Mon, 16 Dec 2024 18:18:15 +0100 Subject: [PATCH] [3.12] Fix typo in itertools docs (gh-127995) (gh-127997) --- 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 047d805eda62..a82fd8630b7b 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. -- 2.47.3