aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Ikko Ashimine <eltociear@gmail.com> 2022-09-01 16:14:20 +0900
committerGravatar GitHub <noreply@github.com> 2022-09-01 00:14:20 -0700
commit5d993988508e3138f8dbc7ef69cd59de7d6c4584 (patch)
treeab4995b3dc88a8ff14cc95521fe6502d59c75f2e
parent43fc696d7b7db58a38feb0a5ce5b89f72307f097 (diff)
downloadbun-5d993988508e3138f8dbc7ef69cd59de7d6c4584.tar.gz
bun-5d993988508e3138f8dbc7ef69cd59de7d6c4584.tar.zst
bun-5d993988508e3138f8dbc7ef69cd59de7d6c4584.zip
Fix typo in futex.zig (#1186)
Therefor -> Therefore
-rw-r--r--src/futex.zig2
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");
};