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