From a7c37d2ff49de0cb002b27c2cf536d8371748485 Mon Sep 17 00:00:00 2001 From: Daniel Bevenius Date: Mon, 11 Oct 2021 13:34:50 +0200 Subject: [PATCH] Fix typo in RunQueue documentation --- embassy/src/executor/raw/run_queue.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 { /// null. Then the batch is iterated following the next pointers until null is reached. /// /// Note that batches will be iterated in the reverse order as they were enqueued. This is OK -/// for our purposes: it can't crate fairness problems since the next batch won't run until the +/// for our purposes: it can't create fairness problems since the next batch won't run until the /// current batch is completely processed, so even if a task enqueues itself instantly (for example /// by waking its own waker) can't prevent other tasks from running. pub(crate) struct RunQueue {