From f65eb76893ab0c90152e19b0abea2b7e46ba125d Mon Sep 17 00:00:00 2001 From: CJ van den Berg Date: Sat, 14 Mar 2026 23:52:18 +0100 Subject: [PATCH] fix(inotify): fix typo --- src/backend/INotify.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/backend/INotify.zig b/src/backend/INotify.zig index cf4c0fb..c71692b 100644 --- a/src/backend/INotify.zig +++ b/src/backend/INotify.zig @@ -193,7 +193,7 @@ pub fn Create(comptime variant: InterfaceType) type { while (true) { const n = std.posix.read(self.inotify_fd, &buf) catch |e| switch (e) { error.WouldBlock => { - // re-arm the file_discriptor + // re-arm the file descriptor try self.arm(allocator); break; },