mirror of
https://github.com/bevyengine/bevy
synced 2024-11-10 07:04:33 +00:00
Fix typo in QueryComponentError message (#2498)
There was a typo, I believe.
This commit is contained in:
parent
0aced5fb72
commit
0c62b28d6d
1 changed files with 1 additions and 1 deletions
|
@ -559,7 +559,7 @@ where
|
|||
pub enum QueryComponentError {
|
||||
#[error("This query does not have read access to the requested component.")]
|
||||
MissingReadAccess,
|
||||
#[error("This query does not have read access to the requested component.")]
|
||||
#[error("This query does not have write access to the requested component.")]
|
||||
MissingWriteAccess,
|
||||
#[error("The given entity does not have the requested component.")]
|
||||
MissingComponent,
|
||||
|
|
Loading…
Reference in a new issue