From 4220a42139c7aefd29ddd39727fd535dc7665de6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Timo=20K=C3=B6sters?= Date: Fri, 28 Apr 2023 23:15:08 +0200 Subject: [PATCH] Fix typo (#3719) The error previously printed "otherusages" without a space --- wgpu-core/src/track/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wgpu-core/src/track/mod.rs b/wgpu-core/src/track/mod.rs index b2548f08ae..ad61e5e859 100644 --- a/wgpu-core/src/track/mod.rs +++ b/wgpu-core/src/track/mod.rs @@ -301,7 +301,7 @@ impl fmt::Display for InvalidUse { write!( f, "conflicting usages. Current usage {current:?} and new usage {new:?}. \ - {exclusive:?} is an exclusive usage and cannot be used with any other\ + {exclusive:?} is an exclusive usage and cannot be used with any other \ usages within the usage scope (renderpass or compute dispatch)" ) }