From 174f2e017e31d59be43ca6be11c7c5627974cd34 Mon Sep 17 00:00:00 2001 From: ripytide Date: Wed, 28 Aug 2024 17:56:00 +0100 Subject: [PATCH] remove the a's for grammar --- src/pixel_traits/het_pixel.rs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/pixel_traits/het_pixel.rs b/src/pixel_traits/het_pixel.rs index 13ed543..f7e559c 100644 --- a/src/pixel_traits/het_pixel.rs +++ b/src/pixel_traits/het_pixel.rs @@ -35,14 +35,14 @@ pub trait HetPixel: Copy { /// color components + 1. That is, you cannot have more than 1 alpha components, but you can /// have 0. /// - /// For example, [`Rgb`] has a `NUM_COMPONENTS` == 3 whereas - /// [`Rgba`] has a `NUM_COMPONENTS` == 4. + /// For example, [`Rgb`] has `NUM_COMPONENTS` == 3 whereas + /// [`Rgba`] has `NUM_COMPONENTS` == 4. const NUM_COMPONENTS: u8; /// The number of components in the pixel minus alpha. /// - /// For example, [`Rgb`] has a `NUM_COLOR_COMPONENTS` == 3 whereas - /// [`Rgbw`] has a `NUM_COLOR_COMPONENTS` == 4. + /// For example, [`Rgb`] has `NUM_COLOR_COMPONENTS` == 3 whereas + /// [`Rgbw`] has `NUM_COLOR_COMPONENTS` == 4. const NUM_COLOR_COMPONENTS: u8; /// The same pixel type as `Self` but with a different component type `U`.