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"
This commit is contained in:
Nathan 2023-12-02 21:07:19 +11:00 committed by GitHub
parent b4c33da149
commit 24c6a7df05
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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