diff --git a/crates/bevy_ecs/src/system/commands/mod.rs b/crates/bevy_ecs/src/system/commands/mod.rs index 06271dc22c..e5db31f50b 100644 --- a/crates/bevy_ecs/src/system/commands/mod.rs +++ b/crates/bevy_ecs/src/system/commands/mod.rs @@ -62,6 +62,10 @@ pub trait Command: Send + 'static { /// * inserting resources /// * etc. /// +/// For a version of [`Commands`] that works in parallel contexts (such as +/// within [`Query::par_iter`](crate::system::Query::par_iter)) see +/// [`ParallelCommands`] +/// /// # Usage /// /// Add `mut commands: Commands` as a function argument to your system to get a copy of this struct that will be applied the next time a copy of [`apply_system_buffers`] runs.