From: Ben <22038077+bcla22@users.noreply.github.com> Date: Tue, 31 Jan 2023 05:36:40 +0000 (-0500) Subject: Fixes typo in asyncio.TaskGroup context manager code example (#101449) X-Git-Tag: v3.12.0a5~65 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=ef09bf63d22b2efe5c0e9a2b9f25a9bec2ba1db0;p=thirdparty%2FPython%2Fcpython.git Fixes typo in asyncio.TaskGroup context manager code example (#101449) --- diff --git a/Doc/library/asyncio-task.rst b/Doc/library/asyncio-task.rst index 631a5ddc1f65..9a42b9631676 100644 --- a/Doc/library/asyncio-task.rst +++ b/Doc/library/asyncio-task.rst @@ -121,7 +121,7 @@ To actually run a coroutine, asyncio provides the following mechanisms: print(f"started at {time.strftime('%X')}") - # The wait is implicit when the context manager exits. + # The await is implicit when the context manager exits. print(f"finished at {time.strftime('%X')}")