]> granicus.if.org Git - python/commitdiff
Fix a typo in asyncio-dev.rst. (GH-10133)
authorBenjamin Peterson <benjamin@python.org>
Fri, 26 Oct 2018 17:14:04 +0000 (10:14 -0700)
committerGitHub <noreply@github.com>
Fri, 26 Oct 2018 17:14:04 +0000 (10:14 -0700)
"threadsafe"

Doc/library/asyncio-dev.rst

index 5f926fceb22de56e95aec1e9bf8cb5a06481483c..b728803619297968d9c57fb4f2b8a5e34566de2e 100644 (file)
@@ -50,7 +50,7 @@ When the debug mode is enabled:
   <asyncio-coroutine-not-scheduled>` and logs them; this mitigates
   the "forgotten await" pitfall.
 
-* Many non-treadsafe asyncio APIs (such as :meth:`loop.call_soon` and
+* Many non-threadsafe asyncio APIs (such as :meth:`loop.call_soon` and
   :meth:`loop.call_at` methods) raise an exception if they are called
   from a wrong thread.