diff options
author | Zackery Spytz <zspytz@gmail.com> | 2020-12-17 20:24:43 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-17 20:24:43 (GMT) |
commit | 074ad5123f18923bdb5fa0b6e4bf24de45e32ba9 (patch) | |
tree | 563874e68e7a43bec86fbc2315755a1b93640eae /Doc/library | |
parent | 75dabfe7a8324a16687959cc401deb72b104a575 (diff) | |
download | cpython-074ad5123f18923bdb5fa0b6e4bf24de45e32ba9.zip cpython-074ad5123f18923bdb5fa0b6e4bf24de45e32ba9.tar.gz cpython-074ad5123f18923bdb5fa0b6e4bf24de45e32ba9.tar.bz2 |
bpo-42670: Fix a missing word in the itertools.product() docs (GH-23823)
Diffstat (limited to 'Doc/library')
-rw-r--r-- | Doc/library/itertools.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/itertools.rst b/Doc/library/itertools.rst index 44728b4..612a66f 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]) |