diff options
author | Andrzej BartosiĆski <6197476+Neob91@users.noreply.github.com> | 2022-08-09 13:59:27 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-09 13:59:27 (GMT) |
commit | 141f2517fc36cc7a0caf177f270edb6d39cf3d23 (patch) | |
tree | d124cabcd8fbfc86543bfeabaee8df1eb64c131e /Doc/library/asyncio-eventloop.rst | |
parent | 8d37c62c2a2579ae7839ecaf8351e862f2ecc9bb (diff) | |
download | cpython-141f2517fc36cc7a0caf177f270edb6d39cf3d23.zip cpython-141f2517fc36cc7a0caf177f270edb6d39cf3d23.tar.gz cpython-141f2517fc36cc7a0caf177f270edb6d39cf3d23.tar.bz2 |
gh-95767: Fix grammatical error in asyncio loop.create_task docs (#95768)
Diffstat (limited to 'Doc/library/asyncio-eventloop.rst')
-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 4f0f8c0..555a0f5 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, context=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` |