From 40409c9dc07453318916a30be1d6b8d9a1954acf Mon Sep 17 00:00:00 2001 From: ByteFlow Date: Tue, 21 Apr 2026 03:22:37 +0800 Subject: [PATCH] [3.14] 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 f3409bcd2df6489..713b40d746680af 100644 --- a/Doc/library/asyncio-dev.rst +++ b/Doc/library/asyncio-dev.rst @@ -304,7 +304,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