summaryrefslogtreecommitdiff
path: root/Doc/library/threading.rst
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2016-05-10 12:01:23 +0300
committerSerhiy Storchaka <storchaka@gmail.com>2016-05-10 12:01:23 +0300
commit1ff27f48c8abad157c51cd4ec6ce6ea4a695fa1b (patch)
tree48fcbd15465e1d9844defb67f3aa83c8be0a8b33 /Doc/library/threading.rst
parent48a4f092fcd3459990bec7857122dace8070b245 (diff)
downloadcpython-1ff27f48c8abad157c51cd4ec6ce6ea4a695fa1b.tar.gz
Issue #23921: Standardized documentation whitespace formatting.
Original patch by James Edwards.
Diffstat (limited to 'Doc/library/threading.rst')
-rw-r--r--Doc/library/threading.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/threading.rst b/Doc/library/threading.rst
index c56d707342..3066496fa4 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)