diff --git a/crates/bevy_render/src/render_resource/bind_group.rs b/crates/bevy_render/src/render_resource/bind_group.rs index d8d054a8ea..4ac07a16d5 100644 --- a/crates/bevy_render/src/render_resource/bind_group.rs +++ b/crates/bevy_render/src/render_resource/bind_group.rs @@ -359,7 +359,7 @@ pub enum AsBindGroupError { /// The bind group could not be generated. Try again next frame. #[display("The bind group could not be generated")] RetryNextUpdate, - #[display("At binding index{0}, the provided image sampler `{_1}` does not match the required sampler type(s) `{_2}`.")] + #[display("At binding index {_0}, the provided image sampler `{_1}` does not match the required sampler type(s) `{_2}`.")] InvalidSamplerType(u32, String, String), }