stefan pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=3dc5dae68569fb1892649b5efc91d7b146b07ad9
commit 3dc5dae68569fb1892649b5efc91d7b146b07ad9 Author: Stefan Schmidt <ste...@osg.samsung.com> Date: Fri Oct 21 17:45:32 2016 +0200 docs: atspi: add missing docs to atspi value interface --- src/lib/elementary/elm_interface_atspi_value.eo | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/lib/elementary/elm_interface_atspi_value.eo b/src/lib/elementary/elm_interface_atspi_value.eo index 86e5714..a3d30d0 100644 --- a/src/lib/elementary/elm_interface_atspi_value.eo +++ b/src/lib/elementary/elm_interface_atspi_value.eo @@ -7,7 +7,7 @@ interface Elm.Interface.Atspi.Value () [[Gets value displayed by a accessible widget.]] } set { - return: bool; [[true if setting widgets value has successed, false otherwise.]] + return: bool; [[$true if setting widgets value has succeed, $false otherwise.]] } values { value: double; [[Value of widget casted to floating point number.]] @@ -19,9 +19,9 @@ interface Elm.Interface.Atspi.Value () [[Gets a range of all possible values and its description]] } values { - lower_limit: double; - upper_limit: double; - description: string; + lower_limit: double; [[Lower limit of the range]] + upper_limit: double; [[Upper limit of the range]] + description: string; [[Description of the range]] } } @property increment @protected { @@ -29,7 +29,7 @@ interface Elm.Interface.Atspi.Value () [[Gets an minimal incrementation value]] } values { - increment: double; + increment: double; [[Minimal incrementation value]] } } } --