From e584264a373d89f5d52be53738d975f275d98f97 Mon Sep 17 00:00:00 2001 From: Nicolas Silva Date: Tue, 15 Feb 2022 10:56:48 +0100 Subject: [PATCH] Fix mistake in Access doc comment. --- wgpu-core/src/hub.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wgpu-core/src/hub.rs b/wgpu-core/src/hub.rs index c513a608a8..9f8b840b7f 100644 --- a/wgpu-core/src/hub.rs +++ b/wgpu-core/src/hub.rs @@ -266,7 +266,7 @@ impl Storage { } /// Type system for enforcing the lock order on shared HUB structures. -/// If type A implements `Access`, that means we are allowed to proceed +/// If type A implements `Access`, that means we are allowed to proceed /// with locking resource `B` after we lock `A`. /// /// The implenentations basically describe the edges in a directed graph