Issue #24443: Fix links for Event.clear() and Event.wait() methods.
Patch by Jaivish Kothari.
diff --git a/Doc/library/threading.rst b/Doc/library/threading.rst
index a24c385..04a6ebe 100644
--- a/Doc/library/threading.rst
+++ b/Doc/library/threading.rst
@@ -710,8 +710,8 @@
thread signals an event and other threads wait for it.
An event object manages an internal flag that can be set to true with the
-:meth:`~Event.set` method and reset to false with the :meth:`clear` method. The
-:meth:`wait` method blocks until the flag is true.
+:meth:`~Event.set` method and reset to false with the :meth:`~Event.clear`
+method. The :meth:`~Event.wait` method blocks until the flag is true.
.. class:: Event()