diff options
author | Vaibhav Gupta <vaibhgupt199@gmail.com> | 2018-12-26 14:47:17 (GMT) |
---|---|---|
committer | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2018-12-26 14:47:16 (GMT) |
commit | 3a81076bbf899b1a549f005dd9299e7ae0946321 (patch) | |
tree | 63ff55181ca6dd88e74e292ec336b0ddd34bcaf5 | |
parent | 259c159fc1faab0dd631d20374842dc0d6a9f145 (diff) | |
download | cpython-3a81076bbf899b1a549f005dd9299e7ae0946321.zip cpython-3a81076bbf899b1a549f005dd9299e7ae0946321.tar.gz cpython-3a81076bbf899b1a549f005dd9299e7ae0946321.tar.bz2 |
bpo-35579: Fix typo in in asyncio-task documentation (GH-11321)
https://bugs.python.org/issue35579
https://bugs.python.org/issue35579
-rw-r--r-- | Doc/library/asyncio-task.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/asyncio-task.rst b/Doc/library/asyncio-task.rst index 5157f92..a1297f5 100644 --- a/Doc/library/asyncio-task.rst +++ b/Doc/library/asyncio-task.rst @@ -610,7 +610,7 @@ Scheduling From Other Threads See the :ref:`concurrency and multithreading <asyncio-multithreading>` section of the documentation. - Unlike other asyncio functions this functions requires the *loop* + Unlike other asyncio functions this function requires the *loop* argument to be passed explicitly. .. versionadded:: 3.5.1 |