mirror of
https://github.com/bevyengine/bevy
synced 2024-11-25 14:10:19 +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 {
|
pub enum QueryComponentError {
|
||||||
#[error("This query does not have read access to the requested component.")]
|
#[error("This query does not have read access to the requested component.")]
|
||||||
MissingReadAccess,
|
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,
|
MissingWriteAccess,
|
||||||
#[error("The given entity does not have the requested component.")]
|
#[error("The given entity does not have the requested component.")]
|
||||||
MissingComponent,
|
MissingComponent,
|
||||||
|
|
Loading…
Reference in a new issue