summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorSondre Lillebø Gundersen <sondrelg@live.no>2021-07-19 20:46:42 (GMT)
committerGitHub <noreply@github.com>2021-07-19 20:46:42 (GMT)
commite25e43e3556db782b51e96f7da4207c4d7914b1e (patch)
treebff8a64ad85a95a0c14acf4351a7158db0f9d639 /Doc
parentbce1418541a64a793960182772f985f64afbfa1a (diff)
downloadcpython-e25e43e3556db782b51e96f7da4207c4d7914b1e.zip
cpython-e25e43e3556db782b51e96f7da4207c4d7914b1e.tar.gz
cpython-e25e43e3556db782b51e96f7da4207c4d7914b1e.tar.bz2
correct spelling (GH-27076)
Diffstat (limited to 'Doc')
-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 107578f..07354e0 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')}")