Tidy up help command text (#2566)

This commit is contained in:
Chris Gillespie
2020-09-17 23:13:53 -07:00
committed by GitHub
parent df2845a9b4
commit 365f76ad19
8 changed files with 24 additions and 8 deletions

View File

@ -10,7 +10,7 @@ use regex::Regex;
impl Plugin for Match {
fn config(&mut self) -> Result<Signature, ShellError> {
Ok(Signature::build("match")
.desc("filter rows by regex")
.desc("Filter rows by Regex pattern")
.required("member", SyntaxShape::String, "the column name to match")
.required("regex", SyntaxShape::String, "the regex to match with")
.filter())