From: Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> Date: Sat, 19 Dec 2020 00:55:52 +0000 (-0800) Subject: bpo-42670: Fix a missing word in the itertools.product() docs (GH-23823) (GH-23824) X-Git-Tag: v3.9.2rc1~122 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=eef33e6d49d05aad4111da4ad2d9cb34e7a5206c;p=thirdparty%2FPython%2Fcpython.git bpo-42670: Fix a missing word in the itertools.product() docs (GH-23823) (GH-23824) --- diff --git a/Doc/library/itertools.rst b/Doc/library/itertools.rst index 3de66c934928..85f4928ce84f 100644 --- a/Doc/library/itertools.rst +++ b/Doc/library/itertools.rst @@ -565,7 +565,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])