From 41ba7e21c3619386a75986e8a79c0a36155c3688 Mon Sep 17 00:00:00 2001 From: James Liu Date: Mon, 19 Feb 2024 00:43:51 -0800 Subject: [PATCH] typo. Co-authored-by: Joseph <21144246+JoJoJet@users.noreply.github.com> --- crates/bevy_utils/src/parallel_queue.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/bevy_utils/src/parallel_queue.rs b/crates/bevy_utils/src/parallel_queue.rs index 500493747c163..91fdb2a9eef54 100644 --- a/crates/bevy_utils/src/parallel_queue.rs +++ b/crates/bevy_utils/src/parallel_queue.rs @@ -44,7 +44,7 @@ where /// If iteration is terminated part way, the rest of the enqueued items in the same /// chunk will be dropped, and the rest of the undrained elements will remain. /// - /// The ordering is not guarenteed. + /// The ordering is not guaranteed. pub fn drain(&mut self) -> impl Iterator + '_ where B: FromIterator,