From 99f63b13329fa2fe75ba0e5f328a54a7ed65ff3d Mon Sep 17 00:00:00 2001 From: Darren Schroeder <343840+fdncred@users.noreply.github.com> Date: Thu, 28 Aug 2025 12:31:39 -0500 Subject: [PATCH] fix clippy --- src/rgb.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/rgb.rs b/src/rgb.rs index c1634dc..7faf2ab 100644 --- a/src/rgb.rs +++ b/src/rgb.rs @@ -66,7 +66,7 @@ impl Rgb { Self::from_f32(x, x, x) } - /// Creates a new [Rgb] color from a [HSL] color + // Creates a new [Rgb] color from a [HSL] color // pub fn from_hsl(hsl: HSL) -> Self { // if hsl.s == 0.0 { // return Self::gray_f32(hsl.l);