]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Trivial typo in docstring
authorJesús Cea <jcea@jcea.es>
Sat, 31 Jul 2021 04:36:10 +0000 (06:36 +0200)
committerGitHub <noreply@github.com>
Sat, 31 Jul 2021 04:36:10 +0000 (06:36 +0200)
Lib/asyncio/threads.py

index 34b7513a42090298a69a92858e8deb91322c6bfb..db048a8231de166e2af4f2e06092d98def9b1703 100644 (file)
@@ -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.