From bfb036b9c32f1fb0c9d90a2b3f7fc798960411ef Mon Sep 17 00:00:00 2001 From: tshirtman Date: Sat, 2 Mar 2013 01:28:40 +0100 Subject: [PATCH] fix formating in "create an application" bullets, thanks worrelsik --- doc/sources/guide2/basic.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/sources/guide2/basic.rst b/doc/sources/guide2/basic.rst index bff50a9f2..752a2c2c6 100644 --- a/doc/sources/guide2/basic.rst +++ b/doc/sources/guide2/basic.rst @@ -41,8 +41,8 @@ Creating a kivy application is as simple as: - sub-classing the :class:`~kivy.app.App` class - implementing its :meth:`~kivy.app.App.build` method so it returns a - :class:`~kivy.uix.Widget` instance (the root of your widget tree) - - instantiating this class, and call its :meth:`~kivy.app.App.run` + :class:`~kivy.uix.Widget` instance (the root of your widget tree) +- instantiating this class, and call its :meth:`~kivy.app.App.run` method. Here is an example of such a minimal application::