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

Miss Islington (bot) webhook-mailer at python.org
Fri Oct 26 13:42:54 EDT 2018


https://github.com/python/cpython/commit/f2b5b4f2594efabaf4f3fd20453ae8a9a607a01e
commit: f2b5b4f2594efabaf4f3fd20453ae8a9a607a01e
branch: 3.7
author: Miss Islington (bot) <31488909+miss-islington at users.noreply.github.com>
committer: GitHub <noreply at github.com>
date: 2018-10-26T10:42:49-07:00
summary:

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


"threadsafe"
(cherry picked from commit 4e3a53bceefe4803c08a025523d8658862cb31c0)

Co-authored-by: Benjamin Peterson <benjamin at python.org>

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