fix typo query.rs (#17366)

fix typo query.rs
This commit is contained in:
Younes 2025-01-14 22:53:19 +01:00 committed by GitHub
parent ec611976ef
commit 276d6e8014
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -202,7 +202,7 @@ use core::{
/// ## Whole Entity Access
///
/// [`EntityRef`]s can be fetched from a query. This will give read-only access to any component on the entity,
/// and can be use to dynamically fetch any component without baking it into the query type. Due to this global
/// and can be used to dynamically fetch any component without baking it into the query type. Due to this global
/// access to the entity, this will block any other system from parallelizing with it. As such these queries
/// should be sparingly used.
///