From 4dcd1e984d9fb9c162266fb6d331036b4fef5a97 Mon Sep 17 00:00:00 2001 From: Ben <22038077+bcla22@users.noreply.github.com> Date: Tue, 31 Jan 2023 00:36:40 -0500 Subject: [PATCH] Fixes typo in asyncio.TaskGroup context manager code example (GH-101449) (cherry picked from commit ef09bf63d22b2efe5c0e9a2b9f25a9bec2ba1db0) Co-authored-by: Ben <22038077+bcla22@users.noreply.github.com> --- Doc/library/asyncio-task.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/library/asyncio-task.rst b/Doc/library/asyncio-task.rst index bf922fae40ab91..24e43c3cbfcb93 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')}")