diff --git a/crates/bevy_ecs/src/query/fetch.rs b/crates/bevy_ecs/src/query/fetch.rs index f9729cc7703dc..ddf8b3346ecce 100644 --- a/crates/bevy_ecs/src/query/fetch.rs +++ b/crates/bevy_ecs/src/query/fetch.rs @@ -1117,7 +1117,7 @@ unsafe impl ReadOnlyQueryData for Option {} /// # Footguns /// /// Note that a `Query>` will match all existing entities. -/// Beware! Even if it matches all entites, it doesn't mean that `query.get(entity)` +/// Beware! Even if it matches all entities, it doesn't mean that `query.get(entity)` /// will always return `Ok(bool)`. /// /// In the case of a non-existent entity, such as a despawned one, it will return `Err`.