From 2993650ede24dec79be9ed6a6286e076d8fbf347 Mon Sep 17 00:00:00 2001 From: Andrew Farkas <6060305+HactarCE@users.noreply.github.com> Date: Thu, 21 Dec 2023 20:02:41 -0500 Subject: [PATCH] Fix typo "layout pipeline layout" -> "pipeline layout" (#4921) --- wgpu-core/src/validation.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wgpu-core/src/validation.rs b/wgpu-core/src/validation.rs index 6eb52376b8..1c05f47ec5 100644 --- a/wgpu-core/src/validation.rs +++ b/wgpu-core/src/validation.rs @@ -252,7 +252,7 @@ pub enum StageError { TooManyVaryings { used: u32, limit: u32 }, #[error("Unable to find entry point '{0}'")] MissingEntryPoint(String), - #[error("Shader global {0:?} is not available in the layout pipeline layout")] + #[error("Shader global {0:?} is not available in the pipeline layout")] Binding(naga::ResourceBinding, #[source] BindingError), #[error("Unable to filter the texture ({texture:?}) by the sampler ({sampler:?})")] Filtering {