From 609c033f436a79fb54811514fa4cda83b4d2800d Mon Sep 17 00:00:00 2001 From: "Miss Islington (bot)" <31488909+miss-islington@users.noreply.github.com> Date: Thu, 23 Aug 2018 22:03:23 -0400 Subject: [PATCH] Fix typo in asyncio.BoundedSemaphore docs (GH-8882) semapthores -> semaphores (cherry picked from commit b8a181f4ae167e4eda60f585a536240764151cf7) Co-authored-by: Jelle Zijlstra --- Doc/library/asyncio-sync.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 `. -- 2.47.3