From ca74271d07f5dae1f26bb6e96df93d3728940205 Mon Sep 17 00:00:00 2001 From: Mitchell Henry Date: Sun, 27 Nov 2022 01:28:17 +0000 Subject: [PATCH] Fix docs typo (#6771) # Objective - Fix a small typo ## Solution - Type them correctly :D --- crates/bevy_ecs/src/bundle.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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. ///