[Python-checkins] gh-95767: Fix grammatical error in asyncio loop.create_task docs (GH-95768)

miss-islington webhook-mailer at python.org
Tue Aug 9 10:07:41 EDT 2022


https://github.com/python/cpython/commit/d57d86a59177aef3d66c42f969a0ed3fbf061c8c
commit: d57d86a59177aef3d66c42f969a0ed3fbf061c8c
branch: 3.10
author: Miss Islington (bot) <31488909+miss-islington at users.noreply.github.com>
committer: miss-islington <31488909+miss-islington at users.noreply.github.com>
date: 2022-08-09T07:07:21-07:00
summary:

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 at users.noreply.github.com>

files:
M Doc/library/asyncio-eventloop.rst

diff --git a/Doc/library/asyncio-eventloop.rst b/Doc/library/asyncio-eventloop.rst
index 300092d71b1..0e66b3e7a6c 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`



More information about the Python-checkins mailing list