diff --git a/crates/bevy_internal/src/default_plugins.rs b/crates/bevy_internal/src/default_plugins.rs index a6265a2ba08fe..4f2d2c113e219 100644 --- a/crates/bevy_internal/src/default_plugins.rs +++ b/crates/bevy_internal/src/default_plugins.rs @@ -119,8 +119,7 @@ plugin_group! { /// It includes a [schedule runner (`ScheduleRunnerPlugin`)](crate::app::ScheduleRunnerPlugin) /// to provide functionality that would otherwise be driven by a windowed application's /// *event loop* or *message loop*. - /// Note that this loop will run as fast as possible by default, - /// which can result in high CPU usage. + /// By default, this loop will run as fast as possible, which can result in high CPU usage. /// You can add a delay using [`run_loop`](crate::app::ScheduleRunnerPlugin::run_loop), /// or remove the loop using [`run_once`](crate::app::ScheduleRunnerPlugin::run_once). /// # Example: