From: Jelle Zijlstra Date: Fri, 24 Aug 2018 01:50:00 +0000 (-0700) Subject: Fix typo in asyncio.BoundedSemaphore docs (GH-8882) X-Git-Tag: v3.8.0a1~1175 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=b8a181f4ae167e4eda60f585a536240764151cf7;p=thirdparty%2FPython%2Fcpython.git Fix typo in asyncio.BoundedSemaphore docs (GH-8882) semapthores -> semaphores --- 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 `. This class is :ref:`not thread safe `.