From 2697061e5b2d80fa5e8b65cc1966299886cb4b35 Mon Sep 17 00:00:00 2001 From: "Jeffrey C. Ollie" Date: Tue, 18 Feb 2025 23:28:10 -0600 Subject: [PATCH] gtk: fix comment in Window.updateConfig --- src/apprt/gtk/Window.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/apprt/gtk/Window.zig b/src/apprt/gtk/Window.zig index a0b9516c6..8a6ebc71c 100644 --- a/src/apprt/gtk/Window.zig +++ b/src/apprt/gtk/Window.zig @@ -361,7 +361,7 @@ pub fn updateConfig( config: *const configpkg.Config, ) !void { // avoid multiple reconfigs when we have many surfaces contained in this - // surface using the integer value of config as a simple marker to know if + // window using the integer value of config as a simple marker to know if // we've "seen" this particular config before const this_config = @intFromPtr(config); if (self.last_config == this_config) return;