Fix typo in asyncio.BoundedSemaphore docs (GH-8882)

semapthores -> semaphores
This commit is contained in:
Jelle Zijlstra 2018-08-23 18:50:00 -07:00 committed by Mariatta
parent 096329f0b2
commit b8a181f4ae

View file

@ -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>`.