diff options
author | sharkdp <davidpeter@web.de> | 2018-10-17 23:17:28 +0200 |
---|---|---|
committer | sharkdp <davidpeter@web.de> | 2018-10-17 23:17:28 +0200 |
commit | 671deeef8c0821f6cfd2933f60d510a9f7ff6837 (patch) | |
tree | 36076fc3c69bae553636d8e312816097825ca8e9 | |
parent | a892caeb3371803204c9e3b1a9b66896371b7883 (diff) |
Update help text
-rw-r--r-- | src/clap_app.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/clap_app.rs b/src/clap_app.rs index 9366ff31..817ca1fe 100644 --- a/src/clap_app.rs +++ b/src/clap_app.rs @@ -66,7 +66,7 @@ pub fn build_app(interactive_output: bool) -> ClapApp<'static, 'static> { .multiple(true) .takes_value(true) .value_name("from:to") - .help("Map a file extension or name to an existing syntax") + .help("Map a file extension or name to an existing syntax.") .long_help( "Map a file extension or file name to an existing syntax. For example, \ to highlight *.conf files with the INI syntax, use '-m conf:ini'. \ @@ -271,7 +271,7 @@ pub fn build_app(interactive_output: bool) -> ClapApp<'static, 'static> { .conflicts_with("list-languages") .conflicts_with("list-themes") .hidden(true) - .help("Show path to the configuration file"), + .help("Show path to the configuration file."), ) .subcommand( SubCommand::with_name("cache") |