diff --git a/src/hsl.rs b/src/hsl.rs index 55edebe..3539ebc 100644 --- a/src/hsl.rs +++ b/src/hsl.rs @@ -1,6 +1,6 @@ use crate::{CreationError, LinearRgb}; -/// Contains an RGB image in the HSL representation. +/// Contains an HSL image. /// /// HSL stands for Hue, Saturation and Lightness. It represents pixels in a way that is closer /// to human perception than RGB or YUV values. diff --git a/src/linear_rgb.rs b/src/linear_rgb.rs index e875fc8..b22a18a 100644 --- a/src/linear_rgb.rs +++ b/src/linear_rgb.rs @@ -7,7 +7,7 @@ use crate::{ ConversionError, CreationError, Hsl, Rgb, Xyb, Yuv, }; -/// Contains an RGB image in a linearized RGB color space. +/// Contains an RGB image in a linearized color space. /// /// The image is stored as pixels made of three 32-bit floating-point RGB components which are /// considered to be in an unspecified linearized color space.