aboutsummaryrefslogtreecommitdiff
path: root/embassy-executor/src
diff options
context:
space:
mode:
Diffstat (limited to 'embassy-executor/src')
-rw-r--r--embassy-executor/src/raw/deadline.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/embassy-executor/src/raw/deadline.rs b/embassy-executor/src/raw/deadline.rs
index d08dd06ed..f6d016ae7 100644
--- a/embassy-executor/src/raw/deadline.rs
+++ b/embassy-executor/src/raw/deadline.rs
@@ -2,7 +2,7 @@ use core::sync::atomic::{AtomicU32, Ordering};
2 2
3/// A type for interacting with the deadline of the current task 3/// A type for interacting with the deadline of the current task
4/// 4///
5/// Requires the `edf-scheduler` feature. 5/// Requires the `scheduler-deadline` feature.
6/// 6///
7/// Note: Interacting with the deadline should be done locally in a task. 7/// Note: Interacting with the deadline should be done locally in a task.
8/// In theory you could try to set or read the deadline from another task, 8/// In theory you could try to set or read the deadline from another task,