-
-
Notifications
You must be signed in to change notification settings - Fork 3.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
bevy_ecs: Add doc example for par_iter_mut (#11311) #11499
bevy_ecs: Add doc example for par_iter_mut (#11311) #11499
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Really solid, thanks :)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Would be nice to have this on Query::par_iter_mut
, but that could be a follow up pr.
Waiting until Monday: add the docs there too if you get a chance. Otherwise I'll make a follow-up issue. |
Is that a different |
Oops, not sure what I was thinking with that comment. Might have been to add them to |
Fair 'nuff. I can't think of any good examples for a succinct
which hopefully should point users in the right direction? |
…gine#11499) # Objective Fixes bevyengine#11311 ## Solution Adds an example to the documentation for `par_iter_mut`. I didn't add any examples to `par_iter`, because I couldn't think of a good example and I figure users can infer that `par_iter` and `par_iter_mut` are similar.
Objective
Fixes #11311
Solution
Adds an example to the documentation for
par_iter_mut
. I didn't add any examples topar_iter
, because I couldn't think of a good example and I figure users can infer thatpar_iter
andpar_iter_mut
are similar.