summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2020-11-14 12:24:21 (GMT)
committerGitHub <noreply@github.com>2020-11-14 12:24:21 (GMT)
commit2837241f22be33a5597707b2aa723cb2cf6f3967 (patch)
tree8d8435cf366354fca34cdafd5d185456357a4e33
parentfaadc52e755cdb316a53f3db5aa11cb97f1c4b87 (diff)
downloadcpython-2837241f22be33a5597707b2aa723cb2cf6f3967.zip
cpython-2837241f22be33a5597707b2aa723cb2cf6f3967.tar.gz
cpython-2837241f22be33a5597707b2aa723cb2cf6f3967.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.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/asyncio-policy.rst b/Doc/library/asyncio-policy.rst
index 88e69ce..5e69525 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.