From d0ed58780b6f37ea45012213b57ba92e92c960d8 Mon Sep 17 00:00:00 2001 From: Eagster <79881080+ElliottjPierce@users.noreply.github.com> Date: Fri, 20 Jun 2025 21:56:29 -0400 Subject: [PATCH] Better command docs phrasing Co-authored-by: Alice Cecile --- crates/bevy_ecs/src/system/commands/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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