From 0a723777ed92dca7b3bfb6805876cc79a67c5ba6 Mon Sep 17 00:00:00 2001 From: Matthias Richter Date: Thu, 21 Jun 2018 23:46:58 +0200 Subject: [PATCH] [docs] better words --- docs/gettingstarted.rst | 49 ++++++++++++++++++++++------------------- docs/index.rst | 25 +++++++++++++++++++-- 2 files changed, 49 insertions(+), 25 deletions(-) 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