summaryrefslogtreecommitdiffstats
path: root/Doc/library
diff options
context:
space:
mode:
authorThomas Grainger <tagrain@gmail.com>2020-11-14 12:02:15 (GMT)
committerGitHub <noreply@github.com>2020-11-14 12:02:15 (GMT)
commit8836574a0f34ae81643c8af79bbb9062e332a4e3 (patch)
tree3ba596dcbed6a5aaeea1493dd886cd4007b525ba /Doc/library
parentd2e94bb0848e04a90efa51be401f0ce8a9e252f2 (diff)
downloadcpython-8836574a0f34ae81643c8af79bbb9062e332a4e3.zip
cpython-8836574a0f34ae81643c8af79bbb9062e332a4e3.tar.gz
cpython-8836574a0f34ae81643c8af79bbb9062e332a4e3.tar.bz2
fix typo in ThreadedChildWatcher docs (GH-23277)
Diffstat (limited to 'Doc/library')
-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.