From 573dc520d4c6063805d22e4f97bc876877485fa2 Mon Sep 17 00:00:00 2001
From: Emil Ernerfeldt <emil.ernerfeldt@gmail.com>
Date: Wed, 22 Mar 2023 15:31:33 +0100
Subject: [PATCH] Fix typo

---
 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 {