[Python-checkins] gh-96039: Corrected wording error in itertools doc (GH-96105)

rhettinger webhook-mailer at python.org
Fri Aug 19 02:20:57 EDT 2022


https://github.com/python/cpython/commit/757c383d2465ce87f546f01568ec911bd226a084
commit: 757c383d2465ce87f546f01568ec911bd226a084
branch: main
author: MrSuspicious <40614250+MrSuspicious0 at users.noreply.github.com>
committer: rhettinger <rhettinger at users.noreply.github.com>
date: 2022-08-19T01:20:45-05:00
summary:

gh-96039: Corrected wording error in itertools doc (GH-96105)

files:
M Doc/library/itertools.rst

diff --git a/Doc/library/itertools.rst b/Doc/library/itertools.rst
index 416c4eca5eb..55a4c90137f 100644
--- a/Doc/library/itertools.rst
+++ b/Doc/library/itertools.rst
@@ -668,7 +668,7 @@ loops that truncate the stream.
    the tee objects being informed.
 
    ``tee`` iterators are not threadsafe. A :exc:`RuntimeError` may be
-   raised when using simultaneously iterators returned by the same :func:`tee`
+   raised when simultaneously using iterators returned by the same :func:`tee`
    call, even if the original *iterable* is threadsafe.
 
    This itertool may require significant auxiliary storage (depending on how



More information about the Python-checkins mailing list