diff options
author | Jelle Zijlstra <jelle.zijlstra@gmail.com> | 2018-08-24 01:50:00 (GMT) |
---|---|---|
committer | Mariatta <Mariatta@users.noreply.github.com> | 2018-08-24 01:50:00 (GMT) |
commit | b8a181f4ae167e4eda60f585a536240764151cf7 (patch) | |
tree | 394a216b01256ad86086c7457e76246b0298c8cd /Doc/library/asyncio-sync.rst | |
parent | 096329f0b2bf5e3f0a16363aa631d993ce078737 (diff) | |
download | cpython-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/asyncio-sync.rst')
-rw-r--r-- | Doc/library/asyncio-sync.rst | 2 |
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>`. |