aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--embassy/src/executor/raw/run_queue.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/embassy/src/executor/raw/run_queue.rs b/embassy/src/executor/raw/run_queue.rs
index d0258c717..24624e1bd 100644
--- a/embassy/src/executor/raw/run_queue.rs
+++ b/embassy/src/executor/raw/run_queue.rs
@@ -24,7 +24,7 @@ impl RunQueueItem {
24/// null. Then the batch is iterated following the next pointers until null is reached. 24/// null. Then the batch is iterated following the next pointers until null is reached.
25/// 25///
26/// Note that batches will be iterated in the reverse order as they were enqueued. This is OK 26/// Note that batches will be iterated in the reverse order as they were enqueued. This is OK
27/// for our purposes: it can't crate fairness problems since the next batch won't run until the 27/// for our purposes: it can't create fairness problems since the next batch won't run until the
28/// current batch is completely processed, so even if a task enqueues itself instantly (for example 28/// current batch is completely processed, so even if a task enqueues itself instantly (for example
29/// by waking its own waker) can't prevent other tasks from running. 29/// by waking its own waker) can't prevent other tasks from running.
30pub(crate) struct RunQueue { 30pub(crate) struct RunQueue {