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 3e574f4..574f70f 100644
--- a/Doc/library/asyncio-sync.rst
+++ b/Doc/library/asyncio-sync.rst
@@ -268,7 +268,7 @@
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>`.