diff options
author | Aylur <[email protected]> | 2024-10-22 18:43:17 +0000 |
---|---|---|
committer | Aylur <[email protected]> | 2024-10-23 01:31:01 +0200 |
commit | 9a6c776f8fb145a602bcfe9046955d0d2f268416 (patch) | |
tree | e716c94d76cd69d84a983a0b45bb4b8e3df6f85a /lib/notifd/notifd.vala | |
parent | e220873b5a9c124b742b221c209334045e2b783c (diff) |
docs: notifd doc comments
Diffstat (limited to 'lib/notifd/notifd.vala')
-rw-r--r-- | lib/notifd/notifd.vala | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/notifd/notifd.vala b/lib/notifd/notifd.vala index 6ca25fa..807e40a 100644 --- a/lib/notifd/notifd.vala +++ b/lib/notifd/notifd.vala @@ -1,5 +1,5 @@ /** - * Get the singleton instance of {@link Notifd} + * Get the singleton instance of [[email protected]] */ namespace AstalNotifd { public Notifd get_default() { @@ -74,7 +74,7 @@ public class AstalNotifd.Notifd : Object { } /** - * Gets the {@link Notification} with id or null if there is no such Notification. + * Gets the [[email protected]] with id or null if there is no such Notification. */ public Notification get_notification(uint id) { return proxy != null ? proxy.get_notification(id) : daemon.get_notification(id); @@ -85,7 +85,7 @@ public class AstalNotifd.Notifd : Object { } /** - * Emitted when the daemon receives a {@link Notification}. + * Emitted when the daemon receives a [[email protected]]. * * @param id The ID of the Notification. * @param replaced Indicates if an existing Notification was replaced. @@ -93,7 +93,7 @@ public class AstalNotifd.Notifd : Object { public signal void notified(uint id, bool replaced); /** - * Emitted when a {@link Notification} is resolved. + * Emitted when a [[email protected]] is resolved. * * @param id The ID of the Notification. * @param reason The reason how the Notification was resolved. |