diff options
author | Jesús Cea <jcea@jcea.es> | 2020-11-23 23:56:30 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-11-23 23:56:30 (GMT) |
commit | 989af256161ea3728e1f787329e07e70e0901bc8 (patch) | |
tree | 5757a53d5f0d5276af3774c30e7cf6f25f8417b5 /Doc | |
parent | 79d2e62c008446fbbc6f264bb8a30e2d38b6ff58 (diff) | |
download | cpython-989af256161ea3728e1f787329e07e70e0901bc8.zip cpython-989af256161ea3728e1f787329e07e70e0901bc8.tar.gz cpython-989af256161ea3728e1f787329e07e70e0901bc8.tar.bz2 |
Typo (#23482)
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/asyncio-task.rst | 2 |
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. |