]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
fix typo in ThreadedChildWatcher docs (GH-23277)
authorThomas Grainger <tagrain@gmail.com>
Sat, 14 Nov 2020 12:02:15 +0000 (12:02 +0000)
committerGitHub <noreply@github.com>
Sat, 14 Nov 2020 12:02:15 +0000 (14:02 +0200)
Doc/library/asyncio-policy.rst

index 88e69ceff9adc177131ae6763cda66120a285138..5e69525e90dd27443916acec3bf8469f4d963726 100644 (file)
@@ -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.