fix(inotify): fix typo

This commit is contained in:
CJ van den Berg 2026-03-14 23:52:18 +01:00
parent 2e1f469e3e
commit f65eb76893
Signed by: neurocyte
GPG key ID: 8EB1E1BB660E3FB9

View file

@ -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;
},