ecore_timer: remove redundancy in property docs

Streamline this a bit to document the property itself and only extra information
the the methods if needed.
This commit is contained in:
Stefan Schmidt 2016-04-01 15:40:01 +02:00
parent 1a4674dfc8
commit dac047a5fc
1 changed files with 1 additions and 5 deletions

View File

@ -16,12 +16,9 @@ class Ecore.Timer (Eo.Base)
@property interval { @property interval {
[[Interval the timer ticks on.]] [[Interval the timer ticks on.]]
set { set {
[[Change the interval the timer ticks off. If set during [[If set during a timer call, this will affect the next interval.]]
a timer call, this will affect the next interval.
]]
} }
get { get {
[[Get the interval the timer ticks on.]]
} }
values { values {
in: double(-1); [[The new interval in seconds]] in: double(-1); [[The new interval in seconds]]
@ -30,7 +27,6 @@ class Ecore.Timer (Eo.Base)
@property pending { @property pending {
[[Pending time regarding a timer.]] [[Pending time regarding a timer.]]
get { get {
[[Get the pending time regarding a timer.]]
return: double; return: double;
} }
} }