summaryrefslogtreecommitdiffstats
path: root/Doc/library
diff options
context:
space:
mode:
authorJelle Zijlstra <jelle.zijlstra@gmail.com>2018-08-24 01:50:00 (GMT)
committerMariatta <Mariatta@users.noreply.github.com>2018-08-24 01:50:00 (GMT)
commitb8a181f4ae167e4eda60f585a536240764151cf7 (patch)
tree394a216b01256ad86086c7457e76246b0298c8cd /Doc/library
parent096329f0b2bf5e3f0a16363aa631d993ce078737 (diff)
downloadcpython-b8a181f4ae167e4eda60f585a536240764151cf7.zip
cpython-b8a181f4ae167e4eda60f585a536240764151cf7.tar.gz
cpython-b8a181f4ae167e4eda60f585a536240764151cf7.tar.bz2
Fix typo in asyncio.BoundedSemaphore docs (GH-8882)
semapthores -> semaphores
Diffstat (limited to 'Doc/library')
-rw-r--r--Doc/library/asyncio-sync.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/asyncio-sync.rst b/Doc/library/asyncio-sync.rst
index 3e574f4..574f70f 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>`.