From 73b07c9ab54db5d770d8cd02247ce9840b0d03a0 Mon Sep 17 00:00:00 2001 From: Ed Page Date: Sat, 20 Jul 2024 12:14:22 -0500 Subject: [PATCH] docs: Remove stale ColorChoice platform notes This was called out in #5590 --- clap_builder/src/util/color.rs | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/clap_builder/src/util/color.rs b/clap_builder/src/util/color.rs index d13a6df9e2f..f446c0160e5 100644 --- a/clap_builder/src/util/color.rs +++ b/clap_builder/src/util/color.rs @@ -8,10 +8,6 @@ pub enum ColorChoice { /// /// **NOTE:** This is the default behavior of `clap`. /// - /// # Platform Specific - /// - /// This setting only applies to Unix, Linux, and macOS (i.e. non-Windows platforms). - /// /// # Examples /// /// ```rust @@ -27,10 +23,6 @@ pub enum ColorChoice { /// Enables colored output regardless of whether or not the output is going to a terminal/TTY. /// - /// # Platform Specific - /// - /// This setting only applies to Unix, Linux, and macOS (i.e. non-Windows platforms). - /// /// # Examples /// /// ```rust @@ -46,10 +38,6 @@ pub enum ColorChoice { /// Disables colored output no matter if the output is going to a terminal/TTY, or not. /// - /// # Platform Specific - /// - /// This setting only applies to Unix, Linux, and macOS (i.e. non-Windows platforms) - /// /// # Examples /// /// ```rust