From: Zackery Spytz Date: Thu, 17 Dec 2020 20:24:43 +0000 (-0700) Subject: bpo-42670: Fix a missing word in the itertools.product() docs (GH-23823) X-Git-Tag: v3.10.0a4~139 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=074ad5123f18923bdb5fa0b6e4bf24de45e32ba9;p=thirdparty%2FPython%2Fcpython.git bpo-42670: Fix a missing word in the itertools.product() docs (GH-23823) --- diff --git a/Doc/library/itertools.rst b/Doc/library/itertools.rst index 44728b42287b..612a66f25371 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])