From da49b613199c0fa36d676abc0b2d6b2ff0af0c37 Mon Sep 17 00:00:00 2001 From: Thomas Grainger Date: Sat, 14 Nov 2020 10:03:18 +0000 Subject: [PATCH] fix typo in ThreadedChildWatcher docs --- Doc/library/asyncio-policy.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/library/asyncio-policy.rst b/Doc/library/asyncio-policy.rst index 88e69ceff9adc17..5e69525e90dd274 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.