From 3674876fbf5df213472dc29f0a6b8e9ea66369ed Mon Sep 17 00:00:00 2001 From: Even Wiik Thomassen Date: Wed, 14 Aug 2013 23:24:28 +0200 Subject: [PATCH] Doc: spelling fix in guide/events.rst --- doc/sources/guide/events.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/sources/guide/events.rst b/doc/sources/guide/events.rst index b8df95052..77400c1d2 100644 --- a/doc/sources/guide/events.rst +++ b/doc/sources/guide/events.rst @@ -81,7 +81,7 @@ like in the next frame, or in X seconds:: print 'My callback is called !' Clock.schedule_once(my_callback, 1) -This will call ``my_calback`` in one second. The second argument is the amount +This will call ``my_callback`` in one second. The second argument is the amount of time to wait before calling the function, in seconds. However, you can achieve some other results with special values for the second argument: