From f8f316f8ff11e20f7c8c6247a09e5c6f2cc21192 Mon Sep 17 00:00:00 2001 From: dav Date: Tue, 12 Nov 2024 09:27:32 -0800 Subject: [PATCH] Fix Clippy Lints --- naga/src/back/spv/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/naga/src/back/spv/mod.rs b/naga/src/back/spv/mod.rs index 2528fccb0..c2b1cfa02 100644 --- a/naga/src/back/spv/mod.rs +++ b/naga/src/back/spv/mod.rs @@ -690,7 +690,7 @@ struct BlockContext<'w> { /// SPIR-V ids for expressions we've evaluated. cached: CachedExpressions, - /// The pointers of the cached expressions' SPIR-V ids from [`Block::Context::cached`]. + /// The pointers of the cached expressions' SPIR-V ids from [`BlockContext::cached`]. /// Only used when loaded opaque types need to be passed to a function call. function_arg_ids: crate::FastIndexMap,