]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
gh-95767: Fix grammatical error in asyncio loop.create_task docs (GH-95768)
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Tue, 9 Aug 2022 14:07:21 +0000 (07:07 -0700)
committerGitHub <noreply@github.com>
Tue, 9 Aug 2022 14:07:21 +0000 (07:07 -0700)
(cherry picked from commit 141f2517fc36cc7a0caf177f270edb6d39cf3d23)

Co-authored-by: Andrzej BartosiƄski <6197476+Neob91@users.noreply.github.com>
Doc/library/asyncio-eventloop.rst

index 300092d71b1cb196cacce8c52add2b788b0d4bbe..0e66b3e7a6c5763d9e8ba24bae04eba7263703cc 100644 (file)
@@ -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`