From 6adb3175c782c769624d9d5c41aaac63212e51b1 Mon Sep 17 00:00:00 2001 From: Erich Gubler Date: Thu, 27 Apr 2023 16:26:07 -0400 Subject: [PATCH] chore(wgpu-core): remove period from `CreateTextureError::MissingFeatures` msg. --- wgpu-core/src/resource.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wgpu-core/src/resource.rs b/wgpu-core/src/resource.rs index 7abc20343bb..6ea7b9cce0d 100644 --- a/wgpu-core/src/resource.rs +++ b/wgpu-core/src/resource.rs @@ -523,7 +523,7 @@ pub enum CreateTextureError { InvalidSampleCount(u32, wgt::TextureFormat), #[error("Multisampled textures must have RENDER_ATTACHMENT usage")] MultisampledNotRenderAttachment, - #[error("Texture format {0:?} can't be used due to missing features.")] + #[error("Texture format {0:?} can't be used due to missing features")] MissingFeatures(wgt::TextureFormat, #[source] MissingFeatures), #[error(transparent)] MissingDownlevelFlags(#[from] MissingDownlevelFlags),