Skip to content

Commit 0cac3f4

Browse files
committed
docs(maitake): fix typo in timer wheel comment (#335)
1 parent 2a20199 commit 0cac3f4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

maitake/src/time/timer/wheel.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ struct Deadline {
4949
/// In loom mode, the slot arrays are apparently a bit too big to pass around
5050
/// (since loom's `UnsafeCell`s and atomics are larger than "real" ones), and we
5151
/// 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
52+
/// necessary to box the slot array when running under loom in order to reduce
5353
/// the stack size of the timer wheel.
5454
#[cfg(loom)]
5555
type SlotArray = alloc::boxed::Box<[List<sleep::Entry>; Wheel::SLOTS]>;

0 commit comments

Comments
 (0)