From cce053ce2cd152657c71ef05d975e028c9d0e30f Mon Sep 17 00:00:00 2001 From: Zen-CODE Date: Sat, 17 May 2014 07:35:51 +0200 Subject: [PATCH] doc: clarified object binding --- kivy/_event.pyx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/kivy/_event.pyx b/kivy/_event.pyx index 0c8246728..c23db157a 100644 --- a/kivy/_event.pyx +++ b/kivy/_event.pyx @@ -247,8 +247,8 @@ cdef class EventDispatcher(ObjectWithUid): super(DemoBox, self).__init__(**kwargs) self.orientation = "vertical" - # We start with standard binding to a standard event. The only argument - # passed to the callback is the object on which the event has occurred. + # We start with binding to a normal event. The only argument + # passed to the callback is the object which we have bound to. btn = Button(text="Normal binding to event") btn.bind(on_press=self.on_event)