diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2021-07-27 04:07:30 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-27 04:07:30 (GMT) |
commit | 1557cff0258e69189c1edd7c6b2ec71d21dd6650 (patch) | |
tree | c1322df921f3fbfba10b105e541281448aa71f36 | |
parent | b631d8d932fe695f242cd2c651a60487bd7fcd32 (diff) | |
download | cpython-1557cff0258e69189c1edd7c6b2ec71d21dd6650.zip cpython-1557cff0258e69189c1edd7c6b2ec71d21dd6650.tar.gz cpython-1557cff0258e69189c1edd7c6b2ec71d21dd6650.tar.bz2 |
[doc] Fix typo in asyncio Event Loop (GH-27377)
First Pull Request to cpython, so forgive me for any mistakes
Automerge-Triggered-By: GH:Mariatta
(cherry picked from commit 6fa4060b86a116dc4fb69356795faf6ff1cdde58)
Co-authored-by: Vinicius Gubiani Ferreira <vini.g.fer@gmail.com>
-rw-r--r-- | Doc/library/asyncio-eventloop.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/asyncio-eventloop.rst b/Doc/library/asyncio-eventloop.rst index f34fe09..b1609f7 100644 --- a/Doc/library/asyncio-eventloop.rst +++ b/Doc/library/asyncio-eventloop.rst @@ -55,7 +55,7 @@ an event loop: .. deprecated:: 3.10 Deprecation warning is emitted if there is no running event loop. - If future Python releases this function will be an alias of + In future Python releases, this function will be an alias of :func:`get_running_loop`. .. function:: set_event_loop(loop) |