[Python-checkins] Fix typo in asyncio.BoundedSemaphore docs (GH-8882)

Miss Islington (bot) webhook-mailer at python.org
Thu Aug 23 22:03:27 EDT 2018


https://github.com/python/cpython/commit/609c033f436a79fb54811514fa4cda83b4d2800d
commit: 609c033f436a79fb54811514fa4cda83b4d2800d
branch: 3.7
author: Miss Islington (bot) <31488909+miss-islington at users.noreply.github.com>
committer: GitHub <noreply at github.com>
date: 2018-08-23T22:03:23-04:00
summary:

Fix typo in asyncio.BoundedSemaphore docs (GH-8882)


semapthores -> semaphores
(cherry picked from commit b8a181f4ae167e4eda60f585a536240764151cf7)

Co-authored-by: Jelle Zijlstra <jelle.zijlstra at gmail.com>

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

diff --git a/Doc/library/asyncio-sync.rst b/Doc/library/asyncio-sync.rst
index 3e574f41e80f..574f70f069b3 100644
--- a/Doc/library/asyncio-sync.rst
+++ b/Doc/library/asyncio-sync.rst
@@ -268,7 +268,7 @@ BoundedSemaphore
    This raises :exc:`ValueError` in :meth:`~Semaphore.release` if it would
    increase the value above the initial value.
 
-   Bounded semapthores support the :ref:`context management
+   Bounded semaphores support the :ref:`context management
    protocol <async-with-locks>`.
 
    This class is :ref:`not thread safe <asyncio-multithreading>`.



More information about the Python-checkins mailing list