From be63ce0bbe49d86da0ead9a99db68860d36738b8 Mon Sep 17 00:00:00 2001 From: Ben Clausi Date: Mon, 30 Jan 2023 22:51:56 -0500 Subject: [PATCH] Fix typo in asyncio.TaskGroup context manager code example --- 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 631a5ddc1f6500..9a42b963167685 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')}")