gtk: improve doc comments

This commit is contained in:
Jeffrey C. Ollie
2025-07-14 15:05:18 -05:00
parent 573aef833b
commit abbc31a3cb

View File

@ -162,9 +162,9 @@ fn subscribeToResponse(self: *OpenURI, entry: *Entry) (Allocator.Error || std.fm
);
}
// Unsubscribe to the D-Bus signal that contains the result of the method call.
// This will prevent a response from being processed multiple times. This must
// be called when the mutex is locked.
/// Unsubscribe to the D-Bus signal that contains the result of the method call.
/// This will prevent a response from being processed multiple times. This must
/// be called when the mutex is locked.
fn unsubscribeFromResponse(self: *OpenURI, entry: *Entry) void {
assert(!self.mutex.tryLock());