diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/futex.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/futex.zig b/src/futex.zig index 77af4aeca..b826f1938 100644 --- a/src/futex.zig +++ b/src/futex.zig @@ -35,7 +35,7 @@ pub fn wait(ptr: *const Atomic(u32), expect: u32, timeout: ?u64) error{TimedOut} } // There are no other threads which could notify the caller on single_threaded. - // Therefor a wait() without a timeout would block indefinitely. + // Therefore a wait() without a timeout would block indefinitely. const timeout_ns = timeout orelse { @panic("deadlock"); }; |
