summaryrefslogtreecommitdiff
path: root/src/lib/evas
diff options
context:
space:
mode:
authorHermet Park <hermetpark@gmail.com>2019-09-19 15:29:15 +0900
committerHermet Park <hermetpark@gmail.com>2019-09-19 15:30:19 +0900
commit8a66c2eaea1b4001d6ec3bc7967ab0e5753d0a95 (patch)
tree86e1b527fb2b648fb9d63d4b4fbdbbf24184292e /src/lib/evas
parent81b94b5a2000f0c9dd568b5d3836cfa14c531a87 (diff)
downloadefl-8a66c2eaea1b4001d6ec3bc7967ab0e5753d0a95.tar.gz
doc: fix typo and indentation.
Diffstat (limited to 'src/lib/evas')
-rw-r--r--src/lib/evas/gesture/efl_canvas_gesture_momentum.eo2
-rw-r--r--src/lib/evas/gesture/efl_canvas_gesture_zoom.eo6
2 files changed, 4 insertions, 4 deletions
diff --git a/src/lib/evas/gesture/efl_canvas_gesture_momentum.eo b/src/lib/evas/gesture/efl_canvas_gesture_momentum.eo
index c4bda2fcf2..1cea8b1949 100644
--- a/src/lib/evas/gesture/efl_canvas_gesture_momentum.eo
+++ b/src/lib/evas/gesture/efl_canvas_gesture_momentum.eo
@@ -5,7 +5,7 @@ class @beta Efl.Canvas.Gesture_Momentum extends Efl.Canvas.Gesture
[[EFL Gesture Momentum class
This gesture class defines a method to get momentum value of specific
- gesture event such as flick.]]
+ gesture event such as flick.]]
c_prefix: efl_gesture_momentum;
methods {
momentum_get {
diff --git a/src/lib/evas/gesture/efl_canvas_gesture_zoom.eo b/src/lib/evas/gesture/efl_canvas_gesture_zoom.eo
index f2ed454df9..51b5cea1ad 100644
--- a/src/lib/evas/gesture/efl_canvas_gesture_zoom.eo
+++ b/src/lib/evas/gesture/efl_canvas_gesture_zoom.eo
@@ -3,18 +3,18 @@ class @beta Efl.Canvas.Gesture_Zoom extends Efl.Canvas.Gesture
[[EFL Gesture Zoom class
This gesture class defines methods to get zoom center point and zoom value
- and provides information about ghe zoom gesture's type, state and associated
+ and provides information about the zoom gesture's type, state and associated
pointer information.]]
c_prefix: efl_gesture_zoom;
methods {
radius_get {
[[Gets zoom center point reported to user]]
return: double; [[The radius value]]
- }
+ }
zoom_get {
[[Gets zoom value. (1.0 means no zoom)]]
return: double; [[The zoom value]]
- }
+ }
}
implements {
Efl.Object.constructor;