From: Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> Date: Sat, 14 Nov 2020 12:11:23 +0000 (-0800) Subject: fix typo in ThreadedChildWatcher docs (GH-23277) X-Git-Tag: v3.8.7rc1~42 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=71827351c4faecf3217967b0fd7f8781964326d1;p=thirdparty%2FPython%2Fcpython.git fix typo in ThreadedChildWatcher docs (GH-23277) (cherry picked from commit 8836574a0f34ae81643c8af79bbb9062e332a4e3) Co-authored-by: Thomas Grainger --- diff --git a/Doc/library/asyncio-policy.rst b/Doc/library/asyncio-policy.rst index 2e153d6fe264..91f9822599d4 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.