From 074ad5123f18923bdb5fa0b6e4bf24de45e32ba9 Mon Sep 17 00:00:00 2001 From: Zackery Spytz Date: Thu, 17 Dec 2020 13:24:43 -0700 Subject: [PATCH] bpo-42670: Fix a missing word in the itertools.product() docs (GH-23823) --- 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 44728b42287..612a66f2537 100644 --- a/Doc/library/itertools.rst +++ b/Doc/library/itertools.rst @@ -582,7 +582,7 @@ loops that truncate the stream. Before :func:`product` runs, it completely consumes the input iterables, keeping pools of values in memory to generate the products. Accordingly, - it only useful with finite inputs. + it is only useful with finite inputs. .. function:: repeat(object[, times])