]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
gh-95767: Fix grammatical error in asyncio loop.create_task docs (#95768)
authorAndrzej Bartosiński <6197476+Neob91@users.noreply.github.com>
Tue, 9 Aug 2022 13:59:27 +0000 (15:59 +0200)
committerGitHub <noreply@github.com>
Tue, 9 Aug 2022 13:59:27 +0000 (15:59 +0200)
Doc/library/asyncio-eventloop.rst

index 4f0f8c06fee787aba330148fead6175cb54b7f19..555a0f5cb2a72b5fce4311c18c84d6aa67ddc25f 100644 (file)
@@ -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`