From: sth Date: Sun, 30 Dec 2018 22:01:28 +0000 (+0100) Subject: Fix typo in documentation of AbstractEventLoopPolicy.set_child_watcher() (GH-11369) X-Git-Tag: v3.8.0a1~172 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=1b29c03c95dbffa05f2bac0f8f1a36b21606a504;p=thirdparty%2FPython%2Fcpython.git Fix typo in documentation of AbstractEventLoopPolicy.set_child_watcher() (GH-11369) `set_child_watcher()` *sets* the watcher. --- diff --git a/Doc/library/asyncio-policy.rst b/Doc/library/asyncio-policy.rst index 82c83822d4d3..6212df85dbc1 100644 --- a/Doc/library/asyncio-policy.rst +++ b/Doc/library/asyncio-policy.rst @@ -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.