From 936facfb08ae98093a1328c16d996400d9419b8d Mon Sep 17 00:00:00 2001 From: Michael Ritsema Date: Tue, 23 Apr 2024 17:13:17 -0500 Subject: [PATCH] Gave a better name to the `--color` placeholder (#3226) ## Summary The cli gives as value placeholder which is misleading. I changed this to to make it obvious you don't supply a color but a ColorChoice value. ## Test Plan Compiled and verified --help text was correct --- crates/uv/src/cli.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/crates/uv/src/cli.rs b/crates/uv/src/cli.rs index d7d35a541..913f613f1 100644 --- a/crates/uv/src/cli.rs +++ b/crates/uv/src/cli.rs @@ -61,7 +61,8 @@ pub(crate) struct GlobalArgs { long, value_enum, default_value = "auto", - conflicts_with = "no_color" + conflicts_with = "no_color", + value_name = "COLOR_CHOICE" )] pub(crate) color: ColorChoice,