]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
fix typo in ThreadedChildWatcher docs (GH-23277)
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Sat, 14 Nov 2020 12:11:23 +0000 (04:11 -0800)
committerGitHub <noreply@github.com>
Sat, 14 Nov 2020 12:11:23 +0000 (04:11 -0800)
(cherry picked from commit 8836574a0f34ae81643c8af79bbb9062e332a4e3)

Co-authored-by: Thomas Grainger <tagrain@gmail.com>
Doc/library/asyncio-policy.rst

index 2e153d6fe2647f3f76783f008f43af28058d77fc..91f9822599d482f642c91c19e294dc56d492bf0d 100644 (file)
@@ -209,7 +209,7 @@ implementation used by the asyncio event loop:
    It works reliably even when the asyncio event loop is run in a non-main OS thread.
 
    There is no noticeable overhead when handling a big number of children (*O(1)* each
-   time a child terminates), but stating a thread per process requires extra memory.
+   time a child terminates), but starting a thread per process requires extra memory.
 
    This watcher is used by default.