From 80836cf7b1bc46157350d3b8fab06c4ad888c3f8 Mon Sep 17 00:00:00 2001 From: David Binder Date: Wed, 1 Mar 2023 12:26:27 +0100 Subject: [PATCH] Fix the help string for the "--charset" option of the "cargo tree" subcommand. --- src/bin/cargo/commands/tree.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bin/cargo/commands/tree.rs b/src/bin/cargo/commands/tree.rs index 0a75178f589..94bf3fff106 100644 --- a/src/bin/cargo/commands/tree.rs +++ b/src/bin/cargo/commands/tree.rs @@ -79,7 +79,7 @@ pub fn cli() -> Command { .alias("duplicate"), ) .arg( - opt("charset", "Character set to use in output: utf8, ascii") + opt("charset", "Character set to use in output") .value_name("CHARSET") .value_parser(["utf8", "ascii"]) .default_value("utf8"),