summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrzej BartosiƄski <6197476+Neob91@users.noreply.github.com>2022-08-09 15:59:27 +0200
committerGitHub <noreply@github.com>2022-08-09 15:59:27 +0200
commit141f2517fc36cc7a0caf177f270edb6d39cf3d23 (patch)
treed124cabcd8fbfc86543bfeabaee8df1eb64c131e
parent8d37c62c2a2579ae7839ecaf8351e862f2ecc9bb (diff)
gh-95767: Fix grammatical error in asyncio loop.create_task docs (#95768)HEADmain
-rw-r--r--Doc/library/asyncio-eventloop.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/asyncio-eventloop.rst b/Doc/library/asyncio-eventloop.rst
index 4f0f8c06fee..555a0f5cb2a 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`