[Python-checkins] Fix a typo in asyncio-dev.rst. (GH-10133)

Benjamin Peterson webhook-mailer at python.org
Fri Oct 26 13:14:09 EDT 2018


https://github.com/python/cpython/commit/4e3a53bceefe4803c08a025523d8658862cb31c0
commit: 4e3a53bceefe4803c08a025523d8658862cb31c0
branch: master
author: Benjamin Peterson <benjamin at python.org>
committer: GitHub <noreply at github.com>
date: 2018-10-26T10:14:04-07:00
summary:

Fix a typo in asyncio-dev.rst. (GH-10133)

"threadsafe"

files:
M Doc/library/asyncio-dev.rst

diff --git a/Doc/library/asyncio-dev.rst b/Doc/library/asyncio-dev.rst
index 5f926fceb22d..b72880361929 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.
 



More information about the Python-checkins mailing list