Skip to content

Commit

Permalink
chore(wgpu-core): remove period from `CreateTextureError::MissingFeat…
Browse files Browse the repository at this point in the history
…ures` msg.
  • Loading branch information
ErichDonGubler committed Apr 27, 2023
1 parent 0384cc1 commit 6adb317
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion wgpu-core/src/resource.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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),
Expand Down

0 comments on commit 6adb317

Please sign in to comment.