fix formating in "create an application" bullets, thanks worrelsik

This commit is contained in:
tshirtman 2013-03-02 01:28:40 +01:00
parent e00bdbbe0e
commit bfb036b9c3
1 changed files with 2 additions and 2 deletions

View File

@ -41,8 +41,8 @@ Creating a kivy application is as simple as:
- sub-classing the :class:`~kivy.app.App` class - sub-classing the :class:`~kivy.app.App` class
- implementing its :meth:`~kivy.app.App.build` method so it returns a - implementing its :meth:`~kivy.app.App.build` method so it returns a
:class:`~kivy.uix.Widget` instance (the root of your widget tree) - :class:`~kivy.uix.Widget` instance (the root of your widget tree)
instantiating this class, and call its :meth:`~kivy.app.App.run` - instantiating this class, and call its :meth:`~kivy.app.App.run`
method. method.
Here is an example of such a minimal application:: Here is an example of such a minimal application::