From 3dc5dae68569fb1892649b5efc91d7b146b07ad9 Mon Sep 17 00:00:00 2001 From: Stefan Schmidt Date: Fri, 21 Oct 2016 17:45:32 +0200 Subject: [PATCH] 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 86e5714832..a3d30d0c6a 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]] } } }