diff --git a/crates/bevy_ecs/src/system/commands/command_queue.rs b/crates/bevy_ecs/src/system/commands/command_queue.rs index d9efabb3db67b1..491bffffc0f707 100644 --- a/crates/bevy_ecs/src/system/commands/command_queue.rs +++ b/crates/bevy_ecs/src/system/commands/command_queue.rs @@ -73,7 +73,7 @@ impl CommandQueue { /// This clears the queue. #[inline] pub fn apply(&mut self, world: &mut World) { - // flush previously queued entities + // flush the previously queued entities world.flush(); // SAFE: In the iteration below, `meta.func` will safely consume and drop each pushed command.