From 51ca8b55faec777985b88b7294b331644b0d5b1e Mon Sep 17 00:00:00 2001 From: AlephCubed Date: Wed, 8 Jan 2025 10:55:22 -0800 Subject: [PATCH] Simplified `MinimalPlugins` docs. --- crates/bevy_internal/src/default_plugins.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) 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: