summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2020-11-24 00:11:13 (GMT)
committerGitHub <noreply@github.com>2020-11-24 00:11:13 (GMT)
commitb6416052f7cc79e45d5cbcaca08e12e4bb0895fc (patch)
tree435a8801897b4e3180e6a826c7fb2bd8df3bf345
parent2019e4ff983dae8c17b616941b7a6b3a077278a6 (diff)
downloadcpython-b6416052f7cc79e45d5cbcaca08e12e4bb0895fc.zip
cpython-b6416052f7cc79e45d5cbcaca08e12e4bb0895fc.tar.gz
cpython-b6416052f7cc79e45d5cbcaca08e12e4bb0895fc.tar.bz2
Typo (GH-23482) (#23483)
(cherry picked from commit 989af256161ea3728e1f787329e07e70e0901bc8) Co-authored-by: Jesús Cea <jcea@jcea.es> Co-authored-by: Jesús Cea <jcea@jcea.es>
-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 eb51c70..c638f12 100644
--- a/Doc/library/asyncio-task.rst
+++ b/Doc/library/asyncio-task.rst
@@ -618,7 +618,7 @@ Running in Threads
Asynchronously run function *func* in a separate thread.
Any \*args and \*\*kwargs supplied for this function are directly passed
- to *func*. Also, the current :class:`contextvars.Context` is propogated,
+ to *func*. Also, the current :class:`contextvars.Context` is propagated,
allowing context variables from the event loop thread to be accessed in the
separate thread.