From aa81e3f8ae94e20e4494776ecc48b58d3fdefeb7 Mon Sep 17 00:00:00 2001 From: James Liu Date: Tue, 19 Sep 2023 12:59:40 -0700 Subject: [PATCH] Remove unnecessary comment about being flexible. --- crates/bevy_ecs/src/system/system_registry.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/bevy_ecs/src/system/system_registry.rs b/crates/bevy_ecs/src/system/system_registry.rs index cb5cce8c23baa..f0522606d978f 100644 --- a/crates/bevy_ecs/src/system/system_registry.rs +++ b/crates/bevy_ecs/src/system/system_registry.rs @@ -47,7 +47,7 @@ impl World { /// /// This is different from adding systems to a [`Schedule`](crate::schedule::Schedule), /// because the [`SystemId`] that is returned can be used anywhere in the [`World`] to run the associated system. - /// This allows for running systems in a pushed-based fashion, which is very flexible. + /// This allows for running systems in a pushed-based fashion. /// Using a [`Schedule`](crate::schedule::Schedule) is still preferred for most cases /// due to its better performance and abillity to run non-conflicting systems simultaneously. pub fn register_system + 'static>(