Fix typos in bevy_ecs system.rs (#15536)

This commit is contained in:
mgi388 2024-10-01 04:21:47 +10:00 committed by GitHub
parent 07caf35da4
commit c2d193abd5
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -50,7 +50,7 @@ pub trait System: Send + Sync + 'static {
/// Returns true if the system must be run exclusively. /// Returns true if the system must be run exclusively.
fn is_exclusive(&self) -> bool; fn is_exclusive(&self) -> bool;
/// Returns true if system as deferred buffers /// Returns true if system has deferred buffers.
fn has_deferred(&self) -> bool; fn has_deferred(&self) -> bool;
/// Runs the system with the given input in the world. Unlike [`System::run`], this function /// Runs the system with the given input in the world. Unlike [`System::run`], this function