From 9a833d165e366770c3a605ed5f3e1ad351cd1c22 Mon Sep 17 00:00:00 2001 From: pbug90 Date: Sat, 13 Mar 2021 19:53:10 +0100 Subject: [PATCH] update test command filter help --- cli/src/main.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/cli/src/main.rs b/cli/src/main.rs index 01adc421..48d91e32 100644 --- a/cli/src/main.rs +++ b/cli/src/main.rs @@ -119,7 +119,8 @@ fn run() -> error::Result<()> { Arg::with_name("filter") .long("filter") .short("f") - .takes_value(true), + .takes_value(true) + .help("Only runs tests that include the string passed as argument."), ) .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"))