bpo-42670: Fix a missing word in the itertools.product() docs (GH-23823) (GH-23824)

This commit is contained in:
Miss Islington (bot) 2020-12-18 16:55:52 -08:00 committed by GitHub
parent 4b412e830d
commit eef33e6d49
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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])