summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2018-10-26 10:14:04 -0700
committerGitHub <noreply@github.com>2018-10-26 10:14:04 -0700
commit4e3a53bceefe4803c08a025523d8658862cb31c0 (patch)
treed8ade2e39be7c456f4fe8d20cd309f52a6fe74ad
parent50fe3f8913c503e63f4cfb8ddcf8641ef7ad0722 (diff)
downloadcpython-git-4e3a53bceefe4803c08a025523d8658862cb31c0.tar.gz
Fix a typo in asyncio-dev.rst. (GH-10133)
"threadsafe"
-rw-r--r--Doc/library/asyncio-dev.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/asyncio-dev.rst b/Doc/library/asyncio-dev.rst
index 5f926fceb2..b728803619 100644
--- a/Doc/library/asyncio-dev.rst
+++ b/Doc/library/asyncio-dev.rst
@@ -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.