From e32440de428d9403b6da16a5591fa6c13607a22e Mon Sep 17 00:00:00 2001 From: Stefan Schmidt Date: Fri, 21 Oct 2016 18:15:11 +0200 Subject: [PATCH] docs: atspi: fix some typos in text docs --- src/lib/elementary/elm_interface_atspi_text.eo | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/lib/elementary/elm_interface_atspi_text.eo b/src/lib/elementary/elm_interface_atspi_text.eo index cd8550f..85707cd 100644 --- a/src/lib/elementary/elm_interface_atspi_text.eo +++ b/src/lib/elementary/elm_interface_atspi_text.eo @@ -56,12 +56,12 @@ interface Elm.Interface.Atspi.Text () offset: int; [[Position in text.]] } values { - character: Eina.Unicode; [[Character at offset. 0 when out-of bounds offset has been given. Codepoints between DC80 and DCFF indicates that string includes invalid UTF8 chars.]] + character: Eina.Unicode; [[Character at offset. 0 when out-of bounds offset has been given. Codepoints between DC80 and DCFF indicates that string includes invalid UTF8 chars.]] } } @property string @protected { get { - [[Gets string, start and end offset in text according to given initial offset and granulatity.]] + [[Gets string, start and end offset in text according to given initial offset and granularity.]] } keys { granularity: Elm.Atspi_Text.Granularity; @@ -69,7 +69,7 @@ interface Elm.Interface.Atspi.Text () end_offset: int *; [[Offset indicating end of string according to given granularity. -1 in case of error.]] } values { - string: own(char *); [[Newly allocated UTF-8 encoded string. Must be free by a user.]] + string: own(char *); [[Newly allocated UTF-8 encoded string. Must be free by a user.]] } } @property text @protected { @@ -89,7 +89,7 @@ interface Elm.Interface.Atspi.Text () [[Gets offset position of caret (cursor)]] } set { - return: bool; [[$true if caret was successfully moved, $falseotherwise.]] + return: bool; [[$true if caret was successfully moved, $false otherwise.]] } values { offset: int; @@ -177,7 +177,7 @@ interface Elm.Interface.Atspi.Text () return: bool; } keys { - screen_coords: bool; [[If true x and y values will be relative to screen origin, otherwise relative to canvas]] + screen_coords: bool; [[If $true, x and y values will be relative to screen origin, otherwise relative to canvas]] start_offset: int; end_offset: int; } -- 2.7.4