-
-
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
Rephrase comment about Local<T> for clarity. (Adopted) #11129
Conversation
f88b290
to
57294d2
Compare
9cd1ec1
to
f0c38bc
Compare
Several unrelated changes had to be made to please the CI. I do not know why. |
I guess new rust version just released or something like that. Can you remove these changes please? They are handled in the separate PR: #11123 |
47ddc68
to
2117626
Compare
examples/ecs/ecs_guide.rs
Outdated
// for this case. A `Local<T>` refers to a value owned by the system of type `T`, which is automatically | ||
// initialized using `T`'s `FromWorld`* implementation. In this system's `Local` (`counter`), `T` is `u32`. | ||
// for this case. A `Local<T>` refers to a value of type `T` that is owned by the system. | ||
// This value is automatically initialized using `T`'s `FromWorld`* implementation. |
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.
// This value is automatically initialized using `T`'s `FromWorld`* implementation. | |
// This value is automatically initialized using `T`'s `FromWorld`* implementation upon the system's initialization. |
This might reformatting afterwards, but it's important to note when it's initialized.
) # Objective - Finish PR bevyengine#10322 ## Solution - Rebase changes in PR bevyengine#10322 and format the changes. Co-authored-by: Mauer-Oats <maueroats@users.noreply.github.com>
Objective
Solution