From 1f51aa42c4277304d7024a12dad149d7d7ee4adf Mon Sep 17 00:00:00 2001 From: ByteFlow Date: Tue, 21 Apr 2026 03:22:37 +0800 Subject: [PATCH] [3.13] Fix typos in asyncio, ctypes, and importlib documentation (GH-148747) (cherry picked from commit 9a1c70c639f2ac60ae3756bec20c2584303f748e) Co-authored-by: ByteFlow --- Doc/library/asyncio-dev.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/library/asyncio-dev.rst b/Doc/library/asyncio-dev.rst index 4a94cbe1d2e546..c6f2c2495b3849 100644 --- a/Doc/library/asyncio-dev.rst +++ b/Doc/library/asyncio-dev.rst @@ -302,7 +302,7 @@ generator can occur in an unexpected order:: try: yield 2 finally: - await asyncio.sleep(0.1) # immitate some async work + await asyncio.sleep(0.1) # imitate some async work work_done = True