From: Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> Date: Fri, 24 Aug 2018 02:03:23 +0000 (-0400) Subject: Fix typo in asyncio.BoundedSemaphore docs (GH-8882) X-Git-Tag: v3.7.1rc1~156 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=609c033f436a79fb54811514fa4cda83b4d2800d;p=thirdparty%2FPython%2Fcpython.git Fix typo in asyncio.BoundedSemaphore docs (GH-8882) semapthores -> semaphores (cherry picked from commit b8a181f4ae167e4eda60f585a536240764151cf7) Co-authored-by: Jelle Zijlstra --- 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 `.