ector: minor grammar fixups

Reviewers: cedric

Subscribers: jpeg

Differential Revision: https://phab.enlightenment.org/D5234

Signed-off-by: Cedric BAIL <cedric@osg.samsung.com>
This commit is contained in:
Bryce Harrington 2017-10-03 11:36:41 -07:00 committed by Cedric BAIL
parent c1c424a407
commit ccf3297a0d
2 changed files with 6 additions and 6 deletions

View File

@ -16,12 +16,12 @@ abstract Ector.Renderer (Efl.Object)
eo_prefix: ector_renderer; eo_prefix: ector_renderer;
methods { methods {
@property surface { @property surface {
[[Surface associated to this renderer]] [[Surface associated with this renderer]]
set { set {
[[Do not use.]] [[Do not use.]]
} }
get { get {
[[Gets the surface associated to this renderer. Can not be set.]] [[Gets the surface associated with this renderer. Can not be set.]]
} }
values { values {
s: Ector.Surface; [[Associated surface]] s: Ector.Surface; [[Associated surface]]
@ -49,13 +49,13 @@ abstract Ector.Renderer (Efl.Object)
} }
} }
@property visibility { @property visibility {
[[The given Ector renderer visible or invisible.]] [[The given Ector renderer can be visible or invisible.]]
set { set {
} }
get { get {
} }
values { values {
v: bool; [[$true if to make the object visible, $false otherwise]] v: bool; [[$true to make the object visible, $false otherwise]]
} }
} }
@property color { @property color {
@ -119,7 +119,7 @@ abstract Ector.Renderer (Efl.Object)
params { params {
@in op: Efl.Gfx.Render_Op; [[Renderer operation]] @in op: Efl.Gfx.Render_Op; [[Renderer operation]]
@in clips: array<ptr(Eina.Rect)>; [[Array of @Eina.Rect clip]] @in clips: array<ptr(Eina.Rect)>; [[Array of @Eina.Rect clip]]
@in mul_col: uint; [[Premultiplied color]] @in mul_col: uint; [[Premultiplied color]]
} }
} }
prepare { prepare {

View File

@ -6,7 +6,7 @@ mixin Ector.Surface (Ector.Buffer)
data: null; data: null;
methods { methods {
@property reference_point { @property reference_point {
[[This define where is (0,0) in pixels coordinate inside the surface]] [[This defines where (0,0) is in pixel coordinates inside the surface]]
set @pure_virtual { set @pure_virtual {
} }
values { values {