diff --git a/crates/bevy_ecs/src/query/access.rs b/crates/bevy_ecs/src/query/access.rs index 86cc74fce61e42..fc76814e631cdb 100644 --- a/crates/bevy_ecs/src/query/access.rs +++ b/crates/bevy_ecs/src/query/access.rs @@ -216,7 +216,7 @@ impl FilteredAccess { self.without.union_with(&access.without); } - /// Returns `true` if the access can read all elements in the collection. + /// Sets the underlying unfiltered access as being able to read all elements in the collection. pub fn read_all(&mut self) { self.access.read_all(); }