diff options
author | sth <sth.dev@tejp.de> | 2018-12-30 22:01:28 (GMT) |
---|---|---|
committer | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2018-12-30 22:01:28 (GMT) |
commit | 1b29c03c95dbffa05f2bac0f8f1a36b21606a504 (patch) | |
tree | ac703e2f1cd4ad24058de5f9378b59005f60cc81 | |
parent | 4bd79c38efe3cc0a3c724605cf9474e2d1b6b6e2 (diff) | |
download | cpython-1b29c03c95dbffa05f2bac0f8f1a36b21606a504.zip cpython-1b29c03c95dbffa05f2bac0f8f1a36b21606a504.tar.gz cpython-1b29c03c95dbffa05f2bac0f8f1a36b21606a504.tar.bz2 |
Fix typo in documentation of AbstractEventLoopPolicy.set_child_watcher() (GH-11369)
`set_child_watcher()` *sets* the watcher.
-rw-r--r-- | Doc/library/asyncio-policy.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/asyncio-policy.rst b/Doc/library/asyncio-policy.rst index 82c8382..6212df8 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. |