We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2219b0e commit df06379Copy full SHA for df06379
crates/bevy_mod_scripting_bindings/src/reference.rs
@@ -794,7 +794,7 @@ impl DisplayWithTypeInfo for ReflectBase {
794
}
795
ReflectBase::Asset(handle, assets_resource_id) => {
796
f.write_str("asset with handle: ")?;
797
- write!(f, "{:?}", handle)?;
+ write!(f, "{handle:?}")?;
798
f.write_str(", in Assets resource: ")?;
799
WithTypeInfo::new_with_opt_info(assets_resource_id, type_info_provider)
800
.display_with_type_info(f, type_info_provider)
0 commit comments