diff options
author | Aylur <[email protected]> | 2024-10-23 20:37:32 +0000 |
---|---|---|
committer | Aylur <[email protected]> | 2024-10-23 20:37:32 +0000 |
commit | 306e64998c1bf1fb997c1098ae92d6edfef31cd2 (patch) | |
tree | 1f852514d269f9ad1d3523771e9119760ace6948 /lib/astal/io/time.vala | |
parent | 72670224a49cf22779b56eabce0d9ce71bfb5486 (diff) |
docs: astal3 and io comments
Diffstat (limited to 'lib/astal/io/time.vala')
-rw-r--r-- | lib/astal/io/time.vala | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/astal/io/time.vala b/lib/astal/io/time.vala index 29e7e1f..a799f2b 100644 --- a/lib/astal/io/time.vala +++ b/lib/astal/io/time.vala @@ -38,7 +38,7 @@ public class AstalIO.Time : Object { } /** - * Start an interval timer with a [[email protected]]. + * Start an interval timer with default Priority. */ public Time.interval_prio(uint interval, int prio = Priority.DEFAULT, Closure? fn) { connect_closure(fn); @@ -50,7 +50,7 @@ public class AstalIO.Time : Object { } /** - * Start a timeout timer with a [[email protected]]. + * Start a timeout timer with default Priority. */ public Time.timeout_prio(uint timeout, int prio = Priority.DEFAULT, Closure? fn) { connect_closure(fn); @@ -62,7 +62,7 @@ public class AstalIO.Time : Object { } /** - * Start an idle timer with a [[email protected]]. + * Start an idle timer with default priority. */ public Time.idle_prio(int prio = Priority.DEFAULT_IDLE, Closure? fn) { connect_closure(fn); |