-
-
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
Minor docs fixes #16347
Minor docs fixes #16347
Conversation
crates/bevy_picking/src/backend.rs
Outdated
//! physics objects, a picking shader backend to pick non-physics meshes, and the `bevy_ui` backend | ||
//! for your UI. The [`PointerHits`]s produced by these various backends will be combined, sorted, | ||
//! for your UI. The [`PointerHits`] produced by these various backends will be combined, sorted, |
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.
//! for your UI. The [`PointerHits`] produced by these various backends will be combined, sorted, | |
//! for your UI. The [`PointerHits`] events produced by these various backends will be combined, sorted, |
PointerHits
is the individual thing that is produced, so that "double plural" is somewhat correct here
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.
Yeah, it did occur to me... 🤔 what about
The [
PointerHits
] instances produced...
to avoid the double 's'? Otherwise I don't feel strongly.
Happened upon a few stray characters while reading about picking.