bpo-35395: fix typos in asyncio eventloop documentation (GH-10880)

Fixes `loop.add_writer` and `loop.add_signal_handler` method documentation to correctly reference the callback parameter from method signature.


https://bugs.python.org/issue35395
This commit is contained in:
Naglis 2018-12-04 09:31:15 +02:00 committed by Miss Islington (bot)
parent 8ca0fa9d2f
commit 1747334794
1 changed files with 2 additions and 2 deletions

View File

@ -756,7 +756,7 @@ Watching file descriptors
writing.
Use :func:`functools.partial` :ref:`to pass keyword arguments
<asyncio-pass-keywords>` to *func*.
<asyncio-pass-keywords>` to *callback*.
.. method:: loop.remove_writer(fd)
@ -970,7 +970,7 @@ Unix signals
Raise :exc:`RuntimeError` if there is a problem setting up the handler.
Use :func:`functools.partial` :ref:`to pass keyword arguments
<asyncio-pass-keywords>` to *func*.
<asyncio-pass-keywords>` to *callback*.
.. method:: loop.remove_signal_handler(sig)