From 43ea6f239deefd7a497da6ef581a05a63a278605 Mon Sep 17 00:00:00 2001 From: Rob Parrett Date: Sat, 4 Mar 2023 21:58:18 +0000 Subject: [PATCH] Fix links in QueryParIter docs (#7900) # Objective Found a few doc links that went to the wrong methods while reviewing the 0.10 blog post. ## Solution Fix em --- crates/bevy_ecs/src/query/par_iter.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/bevy_ecs/src/query/par_iter.rs b/crates/bevy_ecs/src/query/par_iter.rs index fd53fb71a2..72744a8efa 100644 --- a/crates/bevy_ecs/src/query/par_iter.rs +++ b/crates/bevy_ecs/src/query/par_iter.rs @@ -76,8 +76,8 @@ impl BatchingStrategy { /// A parallel iterator over query results of a [`Query`](crate::system::Query). /// -/// This struct is created by the [`Query::par_iter`](crate::system::Query::iter) and -/// [`Query::par_iter_mut`](crate::system::Query::iter_mut) methods. +/// This struct is created by the [`Query::par_iter`](crate::system::Query::par_iter) and +/// [`Query::par_iter_mut`](crate::system::Query::par_iter_mut) methods. pub struct QueryParIter<'w, 's, Q: WorldQuery, F: ReadOnlyWorldQuery> { pub(crate) world: &'w World, pub(crate) state: &'s QueryState,