From 19f5222c29c0aab287611508eeafcd4a4f785a77 Mon Sep 17 00:00:00 2001 From: TheBlckbird Date: Wed, 3 Jan 2024 16:30:35 +0100 Subject: [PATCH] Fix typos plugin.rs (#11193) # Objective - There are multiple grammar mistakes in the `plugin.rs` file. ## Solution - Corrects the grammar and spelling in the docs of `plugin.rs` --- crates/bevy_app/src/plugin.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/bevy_app/src/plugin.rs b/crates/bevy_app/src/plugin.rs index b722737ccb56a..55e1ce29a24a8 100644 --- a/crates/bevy_app/src/plugin.rs +++ b/crates/bevy_app/src/plugin.rs @@ -25,8 +25,8 @@ pub trait Plugin: Downcast + Any + Send + Sync { /// Configures the [`App`] to which this plugin is added. fn build(&self, app: &mut App); - /// Has the plugin finished it's setup? This can be useful for plugins that needs something - /// asynchronous to happen before they can finish their setup, like renderer initialization. + /// Has the plugin finished its setup? This can be useful for plugins that need something + /// asynchronous to happen before they can finish their setup, like the initialization of a renderer. /// Once the plugin is ready, [`finish`](Plugin::finish) should be called. fn ready(&self, _app: &App) -> bool { true