summaryrefslogtreecommitdiffstats
path: root/Lib/asyncio/threads.py
diff options
context:
space:
mode:
authorJesús Cea <jcea@jcea.es>2021-07-31 04:36:10 (GMT)
committerGitHub <noreply@github.com>2021-07-31 04:36:10 (GMT)
commit4b4227b907a262446b9d276c274feda2590a4e6e (patch)
tree7c2913ccd2447c87317486a2220774a07758b91e /Lib/asyncio/threads.py
parentb6bde9fc42aecad5be0457198d17cfe7b481ad79 (diff)
downloadcpython-4b4227b907a262446b9d276c274feda2590a4e6e.zip
cpython-4b4227b907a262446b9d276c274feda2590a4e6e.tar.gz
cpython-4b4227b907a262446b9d276c274feda2590a4e6e.tar.bz2
Trivial typo in docstring
Diffstat (limited to 'Lib/asyncio/threads.py')
-rw-r--r--Lib/asyncio/threads.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/asyncio/threads.py b/Lib/asyncio/threads.py
index 34b7513..db048a8 100644
--- a/Lib/asyncio/threads.py
+++ b/Lib/asyncio/threads.py
@@ -13,7 +13,7 @@ async def to_thread(func, /, *args, **kwargs):
"""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 main thread to be accessed in the
separate thread.