https://github.com/python/cpython/commit/b3921ee82797e8698a2dc76b607232ee5cbbda04
commit: b3921ee82797e8698a2dc76b607232ee5cbbda04
branch: 3.14
author: Willy Bruns <[email protected]>
committer: hugovk <[email protected]>
date: 2026-08-28T07:52:58+03:00
summary:

[3.14] Fix typo in asyncio documentation (GH-148747) (#156493)

Co-authored-by: ByteFlow <[email protected]>

files:
M Doc/library/asyncio-dev.rst

diff --git a/Doc/library/asyncio-dev.rst b/Doc/library/asyncio-dev.rst
index f3409bcd2df648..713b40d746680a 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
 
 

_______________________________________________
Python-checkins mailing list -- [email protected]
To unsubscribe send an email to [email protected]
https://mail.python.org/mailman3//lists/python-checkins.python.org
Member address: [email protected]

Reply via email to