From d20fc0d2b55626b55d336a2b759b7a89d6fe1ed0 Mon Sep 17 00:00:00 2001 From: Emil Ernerfeldt Date: Wed, 22 Mar 2023 15:44:54 +0100 Subject: [PATCH] Fix typo I introduced in previous PR (#3615) --- wgpu-core/src/pipeline.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wgpu-core/src/pipeline.rs b/wgpu-core/src/pipeline.rs index b46bd9fc25..6923be65fb 100644 --- a/wgpu-core/src/pipeline.rs +++ b/wgpu-core/src/pipeline.rs @@ -352,7 +352,7 @@ pub enum CreateRenderPipelineError { location: wgt::ShaderLocation, offset: wgt::BufferAddress, }, - #[error("Two or more attributes were assigned to the same shader lcoation {0}")] + #[error("Two or more vertex attributes were assigned to the same location in the shader: {0}")] ShaderLocationClash(u32), #[error("Strip index format was not set to None but to {strip_index_format:?} while using the non-strip topology {topology:?}")] StripIndexFormatForNonStripTopology {