We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2a20199 commit 0cac3f4Copy full SHA for 0cac3f4
maitake/src/time/timer/wheel.rs
@@ -49,7 +49,7 @@ struct Deadline {
49
/// In loom mode, the slot arrays are apparently a bit too big to pass around
50
/// (since loom's `UnsafeCell`s and atomics are larger than "real" ones), and we
51
/// apparently segfault when trying to construct a timer wheel. Therefore, it's
52
-/// necessary to box the slot arrau when running under loom in order to reduce
+/// necessary to box the slot array when running under loom in order to reduce
53
/// the stack size of the timer wheel.
54
#[cfg(loom)]
55
type SlotArray = alloc::boxed::Box<[List<sleep::Entry>; Wheel::SLOTS]>;
0 commit comments