mirror of
https://github.com/bevyengine/bevy
synced 2024-11-10 07:04:33 +00:00
Fix typo in Query::single_mut
docs (#13916)
# Objective - Fix a typo in documentation for `Query::single_mut` ## Solution - Change `item` to `items` ## Testing - I built the documentation and it looked fine. - Since this only affects a doc comment, no further testing should be necessary. --- ## Changelog > This section is optional. If this was a trivial fix, or has no externally-visible impact, you can delete this section. - Fixed a typo in the documentation for Query.
This commit is contained in:
parent
20eb13f458
commit
1b0475f234
1 changed files with 1 additions and 1 deletions
|
@ -1150,7 +1150,7 @@ impl<'w, 's, D: QueryData, F: QueryFilter> Query<'w, 's, D, F> {
|
|||
///
|
||||
/// # Panics
|
||||
///
|
||||
/// This method panics if the number of query item is **not** exactly one.
|
||||
/// This method panics if the number of query items is **not** exactly one.
|
||||
///
|
||||
/// # Example
|
||||
///
|
||||
|
|
Loading…
Reference in a new issue