]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Fix typo in asyncio.BoundedSemaphore docs (GH-8882)
authorJelle Zijlstra <jelle.zijlstra@gmail.com>
Fri, 24 Aug 2018 01:50:00 +0000 (18:50 -0700)
committerMariatta <Mariatta@users.noreply.github.com>
Fri, 24 Aug 2018 01:50:00 +0000 (18:50 -0700)
semapthores -> semaphores

Doc/library/asyncio-sync.rst

index 3e574f41e80f17e2acecd641cf19ac7c493ff703..574f70f069b361194fbf119ef44b7f7385393a28 100644 (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>`.