aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorSondre Lillebø Gundersen <sondrelg@live.no>2021-07-19 22:46:42 +0200
committerGitHub <noreply@github.com>2021-07-19 17:46:42 -0300
commite25e43e3556db782b51e96f7da4207c4d7914b1e (patch)
treebff8a64ad85a95a0c14acf4351a7158db0f9d639
parentbce1418541a64a793960182772f985f64afbfa1a (diff)
downloadcpython-e25e43e3556db782b51e96f7da4207c4d7914b1e.tar.gz
cpython-e25e43e3556db782b51e96f7da4207c4d7914b1e.zip
correct spelling (GH-27076)
-rw-r--r--Doc/library/asyncio-task.rst2
1 files changed, 1 insertions, 1 deletions
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')}")