From beeeab6902084a1377376feae09ba826b184f280 Mon Sep 17 00:00:00 2001 From: Michael Hsu Date: Mon, 25 Apr 2022 10:32:59 -0700 Subject: [PATCH] run cargo fmt --- crates/bevy_tasks/src/single_threaded_task_pool.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/bevy_tasks/src/single_threaded_task_pool.rs b/crates/bevy_tasks/src/single_threaded_task_pool.rs index af5b9ad774303..8fa37f4f2361b 100644 --- a/crates/bevy_tasks/src/single_threaded_task_pool.rs +++ b/crates/bevy_tasks/src/single_threaded_task_pool.rs @@ -157,8 +157,8 @@ impl<'scope, 'env, T: Send + 'env> Scope<'scope, 'env, T> { self.spawn_on_scope(f); } - /// Spawns a scoped future that runs on the thread the scope called from. The - /// scope *must* outlive the provided future. The results of the future will be + /// Spawns a scoped future that runs on the thread the scope called from. The + /// scope *must* outlive the provided future. The results of the future will be /// returned as a part of [`TaskPool::scope`]'s return value. /// /// For more information, see [`TaskPool::scope`].