From 6d22c3961d5cdb7dd29bac4e111bdd55a3c925f3 Mon Sep 17 00:00:00 2001 From: "Andrew M. Kuchling" Date: Fri, 18 Jan 2008 02:42:52 +0000 Subject: [PATCH] Typo fix --- Doc/library/sched.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/library/sched.rst b/Doc/library/sched.rst index 95ec4997e35..420ae20ac90 100644 --- a/Doc/library/sched.rst +++ b/Doc/library/sched.rst @@ -43,7 +43,7 @@ Example:: In multi-threaded environments, the :class:`scheduler` class has limitations with respect to thread-safety, inability to insert a new task before -the one currently pending in a running scheduler, and holding-up the main +the one currently pending in a running scheduler, and holding up the main thread until the event queue is empty. Instead, the preferred approach is to use the :class:`threading.Timer` class instead.