From 24c6a7df05f0aadf9cd9ddc7183fa8de93e4bdd5 Mon Sep 17 00:00:00 2001 From: Nathan <108722893+xNapha@users.noreply.github.com> Date: Sat, 2 Dec 2023 21:07:19 +1100 Subject: [PATCH] Clarifying Commands' purpose (#10837) # Objective As described in [Issue #10805](https://github.com/bevyengine/bevy/issues/10805) I have changed "impactful changes" to "structural changes" ## Solution Updated the text "impactful" to "structural" --- 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 c37d223e51991..4b9f8121bd7c6 100644 --- a/crates/bevy_ecs/src/system/commands/mod.rs +++ b/crates/bevy_ecs/src/system/commands/mod.rs @@ -52,7 +52,7 @@ pub trait Command: Send + 'static { fn apply(self, world: &mut World); } -/// A [`Command`] queue to perform impactful changes to the [`World`]. +/// A [`Command`] queue to perform structural changes to the [`World`]. /// /// Since each command requires exclusive access to the `World`, /// all queued commands are automatically applied in sequence