From e25e43e3556db782b51e96f7da4207c4d7914b1e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sondre=20Lilleb=C3=B8=20Gundersen?= Date: Mon, 19 Jul 2021 22:46:42 +0200 Subject: [PATCH] correct spelling (GH-27076) --- 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 107578fc722..07354e028b1 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')}")