cli: "QUERY" instead of old "PATTERNS" in command help

This commit is contained in:
Simon Michael 2017-01-22 10:05:10 -08:00
parent 9d139269d2
commit 4221381f18

View File

@ -191,7 +191,7 @@ defCommandMode :: [Name] -> Mode RawOpts
defCommandMode names = defMode { defCommandMode names = defMode {
modeNames=names modeNames=names
,modeValue=[("command", headDef "" names)] ,modeValue=[("command", headDef "" names)]
,modeArgs = ([], Just $ argsFlag "[PATTERNS]") ,modeArgs = ([], Just $ argsFlag "[QUERY]")
} }
-- | A basic subcommand mode suitable for an add-on command. -- | A basic subcommand mode suitable for an add-on command.