diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2020-11-14 12:11:23 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-11-14 12:11:23 (GMT) |
commit | 71827351c4faecf3217967b0fd7f8781964326d1 (patch) | |
tree | 14c7b57dd1e0b452ad452c7b57c17ef5658d2621 | |
parent | 8a4557240b98c322d611bfbba3ea51eac3fb841a (diff) | |
download | cpython-71827351c4faecf3217967b0fd7f8781964326d1.zip cpython-71827351c4faecf3217967b0fd7f8781964326d1.tar.gz cpython-71827351c4faecf3217967b0fd7f8781964326d1.tar.bz2 |
fix typo in ThreadedChildWatcher docs (GH-23277)
(cherry picked from commit 8836574a0f34ae81643c8af79bbb9062e332a4e3)
Co-authored-by: Thomas Grainger <tagrain@gmail.com>
-rw-r--r-- | Doc/library/asyncio-policy.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/asyncio-policy.rst b/Doc/library/asyncio-policy.rst index 2e153d6..91f9822 100644 --- a/Doc/library/asyncio-policy.rst +++ b/Doc/library/asyncio-policy.rst @@ -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. |