]> granicus.if.org Git - python/commitdiff
Fix typo in documentation of AbstractEventLoopPolicy.set_child_watcher() (GH-11369)
authorsth <sth.dev@tejp.de>
Sun, 30 Dec 2018 22:01:28 +0000 (23:01 +0100)
committerMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Sun, 30 Dec 2018 22:01:28 +0000 (14:01 -0800)
`set_child_watcher()` *sets* the watcher.

Doc/library/asyncio-policy.rst

index 82c83822d4d3084e3f08847e8d09d7276ac7bdc2..6212df85dbc10a980c764a45bc80db96d1850e62 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.