From 0e8af341facc2d5256f7847d830dec86d7a22126 Mon Sep 17 00:00:00 2001 From: Berker Peksag Date: Sat, 13 Jun 2015 11:05:31 +0300 Subject: Issue #24443: Fix links for Event.clear() and Event.wait() methods. Patch by Jaivish Kothari. --- Doc/library/threading.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 @@ This is one of the simplest mechanisms for communication between threads: one 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() -- cgit v0.12