Skip to content

Commit

Permalink
Clean up error string formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
mweatherley committed Jan 19, 2025
1 parent 83c4f7d commit 3315804
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/bevy_remote/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -787,7 +787,7 @@ impl BrpError {
pub fn resource_not_present(resource: &str) -> Self {
Self {
code: error_codes::RESOURCE_NOT_PRESENT,
message: format!("Resource `{resource}` not present in the world."),
message: format!("Resource `{resource}` not present in the world"),
data: None,
}
}
Expand Down

0 comments on commit 3315804

Please sign in to comment.