From 9d04efda94d9444a3a349578a422304c4d8c739d Mon Sep 17 00:00:00 2001 From: pbug90 Date: Sat, 13 Mar 2021 19:55:04 +0100 Subject: [PATCH] update wording --- cli/src/main.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cli/src/main.rs b/cli/src/main.rs index 48d91e32..e7600b30 100644 --- a/cli/src/main.rs +++ b/cli/src/main.rs @@ -120,9 +120,9 @@ fn run() -> error::Result<()> { .long("filter") .short("f") .takes_value(true) - .help("Only runs tests that include the string passed as argument."), + .help("Only run corpus test cases whose name includes the given string"), ) - .arg(Arg::with_name("update").long("update").short("u").help("Update all syntax trees in corpus files with current parser output.")) + .arg(Arg::with_name("update").long("update").short("u").help("Update all syntax trees in corpus files with current parser output")) .arg(Arg::with_name("debug").long("debug").short("d")) .arg(Arg::with_name("debug-graph").long("debug-graph").short("D")), )