From f608b212cb91b0465f8e6e6d1f213462027ea5a2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sondre=20Lilleb=C3=B8=20Gundersen?= Date: Fri, 9 Jul 2021 10:19:53 +0200 Subject: [PATCH] correct spelling --- 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 107578fc722035..07354e028b12a8 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')}")