From: Sondre Lillebø Gundersen Date: Mon, 19 Jul 2021 20:46:42 +0000 (+0200) Subject: correct spelling (GH-27076) X-Git-Tag: v3.11.0a1~625 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=e25e43e3556db782b51e96f7da4207c4d7914b1e;p=thirdparty%2FPython%2Fcpython.git correct spelling (GH-27076) --- diff --git a/Doc/library/asyncio-task.rst b/Doc/library/asyncio-task.rst index 107578fc7220..07354e028b12 100644 --- a/Doc/library/asyncio-task.rst +++ b/Doc/library/asyncio-task.rst @@ -692,7 +692,7 @@ Running in Threads This coroutine function is primarily intended to be used for executing IO-bound functions/methods that would otherwise block the event loop if - they were ran in the main thread. For example:: + they were run in the main thread. For example:: def blocking_io(): print(f"start blocking_io at {time.strftime('%X')}")