summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--docs/standardwidgets.txt14
1 files changed, 7 insertions, 7 deletions
diff --git a/docs/standardwidgets.txt b/docs/standardwidgets.txt
index c3acccb..afee0f7 100644
--- a/docs/standardwidgets.txt
+++ b/docs/standardwidgets.txt
@@ -24,21 +24,21 @@ Decoration & Container Widgets
.. TODO: add links here?
Decoration widgets alter the appearance or position of a single other widget.
-The widget they wrap is available as the `decoration_widget.original_widget`.
+The widget they wrap is available as the ``decoration_widget.original_widget``.
If you might be using more than one decoration widget you may use
-`decoration_widget.base_widget` to access the "most" original_widget
-(`decoration_widget.original_widget.original_widget...`). `widget.base_widget`
-points to `widget` on all non-decoration widgets, so it is safe to use in any
-situation.
+``decoration_widget.base_widget`` to access the "most" original_widget
+(``decoration_widget.original_widget.original_widget...``).
+``widget.base_widget`` points to ``widget`` on all non-decoration widgets, so
+it is safe to use in any situation.
Container widgets divide their available space between their child widgets.
-This is how widget layouts are defined. When handling selectable widgets
+This is how widget layouts are defined. When handling selectable widgets
container widgets also keep track of which of their child widgets is in focus.
Container widgets may be nested, so the actual widget in focus may be many
levels below the topmost widget.
Different container widgets have different methods of accessing and updating
-their children, and the child in focus. These methods will be made more
+their children, and the child in focus. These methods will be made more
consistent in a future release.
.. vim: set ft=rst: