diff --git a/crates/bevy_ecs/src/system/commands/mod.rs b/crates/bevy_ecs/src/system/commands/mod.rs index 09ac0f2478..6cb0e1c49e 100644 --- a/crates/bevy_ecs/src/system/commands/mod.rs +++ b/crates/bevy_ecs/src/system/commands/mod.rs @@ -439,7 +439,7 @@ impl<'w, 's> Commands<'w, 's> { /// Returns the [`EntityCommands`] for the requested [`Entity`] if it exists. /// This method does not guarantee that commands queued by the returned `EntityCommands` /// will be successful, since the entity could be despawned before they are executed. - /// For example, this does not error when the entity has not been constructed. + /// This also does not error when the entity has not been constructed. /// For that behavior, see [`get_constructed_entity`](Self::get_constructed_entity). /// /// # Errors