diff --git a/docs/gettingstarted.rst b/docs/gettingstarted.rst index 51605f3..7605047 100644 --- a/docs/gettingstarted.rst +++ b/docs/gettingstarted.rst @@ -5,7 +5,7 @@ Before actually getting started, it is important to understand the motivation and mechanics behind SUIT: - **Immediate mode is better than retained mode** -- **Layout does not care about widgets** +- **Layout should not care about content** - **Less is more** Immediate mode? @@ -68,11 +68,11 @@ to design a user interface. SUIT is not a complete GUI library: It does not take control of the runtime. You have to do everything yourself [1]_. -**SUIT is not good at word processors!** +**SUIT is not good at processing words!** -Hello, World ------------- +Hello, World! +------------- SUITing up is is straightforward: Define your GUI in ``love.update()``, and draw it in ``love.draw()``:: @@ -96,15 +96,19 @@ draw it in ``love.draw()``:: suit.draw() end -This will produce this UI (after clicking the button): +This will produce this UI: .. image:: _static/hello-world.gif -As written above, the two widgets are each created by a function call +The two widgets (the button and the label) are each created by a function call (:func:`suit.Button