From 8acde0b0e1cadb46728779181188161b61571455 Mon Sep 17 00:00:00 2001 From: CatCode79 Date: Sun, 21 Nov 2021 12:29:57 +0100 Subject: [PATCH] minor typo GSLS -> GLSL --- wgpu/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wgpu/src/lib.rs b/wgpu/src/lib.rs index 993357c7ad..4eabc22515 100644 --- a/wgpu/src/lib.rs +++ b/wgpu/src/lib.rs @@ -748,7 +748,7 @@ pub enum ShaderSource<'a> { /// is passed to `gfx-rs` and `spirv_cross` for translation. #[cfg(feature = "spirv")] SpirV(Cow<'a, [u32]>), - /// GSLS module as a string slice. + /// GLSL module as a string slice. /// /// wgpu will attempt to parse and validate it. The module will get /// passed to wgpu-core where it will translate it to the required languages.