From abbc31a3cb7af5fac9ae63b7ec693d31bb8ae7f2 Mon Sep 17 00:00:00 2001 From: "Jeffrey C. Ollie" Date: Mon, 14 Jul 2025 15:05:18 -0500 Subject: [PATCH] gtk: improve doc comments --- src/apprt/gtk/portal/OpenURI.zig | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/apprt/gtk/portal/OpenURI.zig b/src/apprt/gtk/portal/OpenURI.zig index 492319065..37b321559 100644 --- a/src/apprt/gtk/portal/OpenURI.zig +++ b/src/apprt/gtk/portal/OpenURI.zig @@ -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());