diff options
Diffstat (limited to 'Doc/library/threading.rst')
-rw-r--r-- | Doc/library/threading.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/threading.rst b/Doc/library/threading.rst index c56d707..3066496 100644 --- a/Doc/library/threading.rst +++ b/Doc/library/threading.rst @@ -847,7 +847,7 @@ For example:: print("hello, world") t = Timer(30.0, hello) - t.start() # after 30 seconds, "hello, world" will be printed + t.start() # after 30 seconds, "hello, world" will be printed .. class:: Timer(interval, function, args=None, kwargs=None) |