From e139c4211cd3f7868ac97bf9504f43273fdede88 Mon Sep 17 00:00:00 2001 From: tobi-wan-kenobi Date: Wed, 10 Jun 2020 20:25:05 +0200 Subject: [PATCH] [doc/dev] module: fix misleading text fixes #651 --- docs/development/module.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/development/module.rst b/docs/development/module.rst index 58b1156..26dfefa 100644 --- a/docs/development/module.rst +++ b/docs/development/module.rst @@ -116,7 +116,7 @@ Somewhat paradoxically, to give a **widget** a state, a method called ``def state(self, widget)`` has to be defined on the **module**. The reason for this is that the module typically contains all of the statefulness, so assumedly, it's easier to determine the state of a widget from the -module, rather than from the module itself. +module, rather than from the widget itself. The ``state()`` method simply returns a list of strings, which make up the state this particular widget has.