From e1ae35445b9492d05bc0cb783c28c486839f106b Mon Sep 17 00:00:00 2001 From: ire-and-curses Date: Fri, 7 Jun 2013 15:42:12 -0700 Subject: [PATCH] typo, linked to wikipedia for event programming --- doc/sources/gettingstarted/events.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/sources/gettingstarted/events.rst b/doc/sources/gettingstarted/events.rst index 7c8ad5381..bffc938fc 100644 --- a/doc/sources/gettingstarted/events.rst +++ b/doc/sources/gettingstarted/events.rst @@ -1,7 +1,7 @@ Events ------ -Kivy is mostly event-based, meaning the flow of the program is determined +Kivy is mostly `event-based `_, meaning the flow of the program is determined by events. **Clock events** @@ -47,7 +47,7 @@ changes its position or size, the corresponding event is automatically fired. In addition, you have the ability to create your own events using :meth:`~kivy.event.EventDispatcher.register_event_type`, as the `on_press` and `on_release` events in the :class:`~kivy.uix.button.Button` -widgit demonstrate. +widget demonstrate. Another thing to note is that if you override an event, you become responsible for implementing all its behaviour previously handled by the base class. The