From 3211edbefe01a3d659cc3bbc91d7834d7042e337 Mon Sep 17 00:00:00 2001 From: Zackery Spytz Date: Thu, 17 Dec 2020 10:54:40 -0700 Subject: [PATCH] bpo-42670: Fix a missing word in the itertools.product() docs --- 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 44728b42287bce..612a66f25371dc 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])