]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Fix typo in documentation of AbstractEventLoopPolicy.set_child_watcher() (GH-11369)
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Sun, 30 Dec 2018 22:07:05 +0000 (14:07 -0800)
committerGitHub <noreply@github.com>
Sun, 30 Dec 2018 22:07:05 +0000 (14:07 -0800)
`set_child_watcher()` *sets* the watcher.
(cherry picked from commit 1b29c03c95dbffa05f2bac0f8f1a36b21606a504)

Co-authored-by: sth <sth.dev@tejp.de>
Doc/library/asyncio-policy.rst

index cab25934d7826bf0c4eb640b3209804951a3611f..07842daa28b80d23994e40409e0ad7cdd59ee930 100644 (file)
@@ -81,7 +81,7 @@ The abstract event loop policy base class is defined as follows:
 
    .. method:: set_child_watcher(watcher)
 
-      Get the current child process watcher to *watcher*.
+      Set the current child process watcher to *watcher*.
 
       This function is Unix specific.