diff --git a/crates/bevy_ecs/src/bundle.rs b/crates/bevy_ecs/src/bundle.rs index 2e5bf03c10..82c8893feb 100644 --- a/crates/bevy_ecs/src/bundle.rs +++ b/crates/bevy_ecs/src/bundle.rs @@ -50,7 +50,7 @@ use std::{any::TypeId, collections::HashMap}; /// component, but specifying different render graphs to use. /// If the bundles were both added to the same entity, only one of these two bundles would work. /// -/// For this reason, There is intentionally no [`Query`] to match whether an entity +/// For this reason, there is intentionally no [`Query`] to match whether an entity /// contains the components of a bundle. /// Queries should instead only select the components they logically operate on. ///