mirror of
https://github.com/bevyengine/bevy
synced 2024-11-22 20:53:53 +00:00
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
This commit is contained in:
parent
cfc280cbef
commit
43ea6f239d
1 changed files with 2 additions and 2 deletions
|
@ -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<Q, F>,
|
||||
|
|
Loading…
Reference in a new issue