From 231c93923d7c13ef5238b8391aaa39adb95e8e77 Mon Sep 17 00:00:00 2001 From: "Miss Islington (bot)" <31488909+miss-islington@users.noreply.github.com> Date: Mon, 16 Dec 2024 18:20:14 +0100 Subject: [PATCH] [3.13] Fix typo in itertools docs (gh-127995) (gh-127996) --- 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 cc7b63ea9ce..3b07be96200 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.