summaryrefslogtreecommitdiff
path: root/src/lib/evas
diff options
context:
space:
mode:
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;