From 0a198b7485b1700b533b5ed801fd489b88204310 Mon Sep 17 00:00:00 2001 From: BenjaminBrienen Date: Fri, 27 Mar 2026 10:59:33 +0100 Subject: [PATCH] comment fix --- crates/wgsl-parse/src/syntax.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/wgsl-parse/src/syntax.rs b/crates/wgsl-parse/src/syntax.rs index 72bf57e..d789a8a 100644 --- a/crates/wgsl-parse/src/syntax.rs +++ b/crates/wgsl-parse/src/syntax.rs @@ -113,7 +113,7 @@ pub struct ImportStatement { pub enum PathOrigin { /// Import relative to the current package root, starting with 'package::'. Absolute, - /// Import relative to the current module, starting with 'super::'. The usize is the number of 'super'. + /// Import relative to the current module, starting with 'super::'. The usize is the number of 'super's. Relative(usize), /// Import from a package dependency, starting with the extern package name. Package(String),