Fix typo in RunQueue documentation

This commit is contained in:
Daniel Bevenius 2021-10-11 13:34:50 +02:00 committed by Ulf Lilleengen
parent 5ae276fe50
commit a7c37d2ff4

View file

@ -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 {