From eab5e6b181eddaaedfac36e4721e4d8df1777e1c Mon Sep 17 00:00:00 2001 From: Marco Castelluccio Date: Wed, 17 Mar 2021 09:57:11 +0100 Subject: [PATCH] Fix the help text for the --dump option Fixes #546 --- rust-code-analysis-cli/src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rust-code-analysis-cli/src/main.rs b/rust-code-analysis-cli/src/main.rs index 64c263f3a..b9c0bd472 100644 --- a/rust-code-analysis-cli/src/main.rs +++ b/rust-code-analysis-cli/src/main.rs @@ -277,7 +277,7 @@ fn main() { ) .arg( Arg::with_name("dump") - .help("Specifies the output file") + .help("Outputs the AST to stdout") .short("d") .long("dump"), )