summaryrefslogtreecommitdiffstats
path: root/Doc/library/asyncio-dev.rst
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2018-10-26 17:14:04 (GMT)
committerGitHub <noreply@github.com>2018-10-26 17:14:04 (GMT)
commit4e3a53bceefe4803c08a025523d8658862cb31c0 (patch)
treed8ade2e39be7c456f4fe8d20cd309f52a6fe74ad /Doc/library/asyncio-dev.rst
parent50fe3f8913c503e63f4cfb8ddcf8641ef7ad0722 (diff)
downloadcpython-4e3a53bceefe4803c08a025523d8658862cb31c0.zip
cpython-4e3a53bceefe4803c08a025523d8658862cb31c0.tar.gz
cpython-4e3a53bceefe4803c08a025523d8658862cb31c0.tar.bz2
Fix a typo in asyncio-dev.rst. (GH-10133)
"threadsafe"
Diffstat (limited to 'Doc/library/asyncio-dev.rst')
-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 5f926fc..b728803 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.