Fixed a typo in the RepeatedTimer docs

This commit is contained in:
Gina Häußge 2015-03-25 16:52:09 +01:00
parent 1c1e6b45b6
commit 18dd1659da

View file

@ -551,7 +551,7 @@ class RepeatedTimer(threading.Thread):
def hello():
print("Hello World!")
t = Timer(1.0, hello)
t = RepeatedTimer(1.0, hello)
t.start() # prints "Hello World!" every second
Arguments: