From 0e9c51a38504a7bc7c552ff478587d69813b3af7 Mon Sep 17 00:00:00 2001 From: james7132 Date: Sun, 18 Feb 2024 01:08:51 -0800 Subject: [PATCH] Formatting --- 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 d2eded7a2a561..500493747c163 100644 --- a/crates/bevy_utils/src/parallel_queue.rs +++ b/crates/bevy_utils/src/parallel_queue.rs @@ -39,7 +39,7 @@ where I: IntoIterator + Default + Send + 'static, { /// Drains all enqueued items from all threads and returns an iterator over them. - /// + /// /// Unlike [`Vec::drain`], this will piecemeal remove chunks of the data stored. /// 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.