From b6d94e3e969f61b2f04f6b97be3a243ca243edc8 Mon Sep 17 00:00:00 2001 From: wyrapeseed Date: Tue, 21 Oct 2025 15:03:07 +0800 Subject: [PATCH] chore: make some documents clearer Signed-off-by: wyrapeseed --- crates/anstyle/src/color.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/anstyle/src/color.rs b/crates/anstyle/src/color.rs index a66dd530..828f9f05 100644 --- a/crates/anstyle/src/color.rs +++ b/crates/anstyle/src/color.rs @@ -4,7 +4,7 @@ pub enum Color { /// Available 4-bit ANSI color palette codes /// - /// The user's terminal defines the meaning of the each palette code. + /// The user's terminal defines the meaning of each palette code. Ansi(AnsiColor), /// 256 (8-bit) color support /// @@ -131,7 +131,7 @@ impl From<(u8, u8, u8)> for Color { /// Available 4-bit ANSI color palette codes /// -/// The user's terminal defines the meaning of the each palette code. +/// The user's terminal defines the meaning of each palette code. #[allow(clippy::exhaustive_enums)] #[derive(Copy, Clone, Debug, PartialEq, Eq, PartialOrd, Ord, Hash)] #[repr(u8)]