diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2022-08-09 14:07:21 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-09 14:07:21 (GMT) |
commit | d57d86a59177aef3d66c42f969a0ed3fbf061c8c (patch) | |
tree | 77065a9e4df50ca70525f8b6dde3d973bace382a /Doc/library | |
parent | 49e505c4bd11aa14f26209b1104f23d62337e1ad (diff) | |
download | cpython-d57d86a59177aef3d66c42f969a0ed3fbf061c8c.zip cpython-d57d86a59177aef3d66c42f969a0ed3fbf061c8c.tar.gz cpython-d57d86a59177aef3d66c42f969a0ed3fbf061c8c.tar.bz2 |
gh-95767: Fix grammatical error in asyncio loop.create_task docs (GH-95768)
(cherry picked from commit 141f2517fc36cc7a0caf177f270edb6d39cf3d23)
Co-authored-by: Andrzej BartosiĆski <6197476+Neob91@users.noreply.github.com>
Diffstat (limited to 'Doc/library')
-rw-r--r-- | Doc/library/asyncio-eventloop.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/asyncio-eventloop.rst b/Doc/library/asyncio-eventloop.rst index 300092d..0e66b3e 100644 --- a/Doc/library/asyncio-eventloop.rst +++ b/Doc/library/asyncio-eventloop.rst @@ -332,7 +332,7 @@ Creating Futures and Tasks .. method:: loop.create_task(coro, *, name=None) - Schedule the execution of a :ref:`coroutine`. + Schedule the execution of :ref:`coroutine <coroutine>` *coro*. Return a :class:`Task` object. Third-party event loops can use their own subclass of :class:`Task` |