diff --git a/crates/bevy_tasks/src/task_pool.rs b/crates/bevy_tasks/src/task_pool.rs index f34b98c91d213..6f76d31ce8bdd 100644 --- a/crates/bevy_tasks/src/task_pool.rs +++ b/crates/bevy_tasks/src/task_pool.rs @@ -207,7 +207,7 @@ impl TaskPool { /// passing a scope object into it. The scope object provided to the callback can be used /// to spawn tasks. This function will await the completion of all tasks before returning. /// - /// This is similar to `rayon::scope` and `crossbeam::scope` + /// This is similar to [`thread::scope`] and `rayon::scope`. /// /// # Example ///