docs: atspi: add missing docs to atspi value interface
authorStefan Schmidt <stefan@osg.samsung.com>
Fri, 21 Oct 2016 15:45:32 +0000 (17:45 +0200)
committerStefan Schmidt <stefan@osg.samsung.com>
Fri, 21 Oct 2016 17:04:37 +0000 (19:04 +0200)
src/lib/elementary/elm_interface_atspi_value.eo

index 86e5714..a3d30d0 100644 (file)
@@ -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]]
          }
       }
    }