diff --git a/embassy/src/executor/raw/waker.rs b/embassy/src/executor/raw/waker.rs index 7cd847697..ea9010ca0 100644 --- a/embassy/src/executor/raw/waker.rs +++ b/embassy/src/executor/raw/waker.rs @@ -24,7 +24,7 @@ pub(crate) unsafe fn from_task(p: NonNull) -> Waker { /// Get a task pointer from a waker. /// -/// This can used as an optimization in wait queues to store task pointers +/// This can be used as an optimization in wait queues to store task pointers /// (1 word) instead of full Wakers (2 words). This saves a bit of RAM and helps /// avoid dynamic dispatch. ///