From a0db8d42b50a4159056ff54f4f5980afb872cf4a Mon Sep 17 00:00:00 2001 From: SteveBeeblebrox <41750582+SteveBeeblebrox@users.noreply.github.com> Date: Mon, 6 Jun 2022 19:59:57 -0600 Subject: [PATCH] Update help messages --- src/main.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main.rs b/src/main.rs index 0a2c81a..b509097 100644 --- a/src/main.rs +++ b/src/main.rs @@ -25,7 +25,7 @@ fn main() { .short("o") .long("out") .value_name("OUTPUT") - .help("Sets the output file to write transpiled code to instead of using the input file's name with the extension changed to .css or .html in the case of HTML files (When set but blank, output is written to stdout; if set to a directory and an input file is provided, the output file will be written to the given directory with the extension changed to .css/.html)") + .help("Sets the output file to write transpiled code to instead of using the input file's name with the extension changed to .css or .html in the case of HTML files (When set to '-' or set but blank, output is written to stdout; if set to a directory and an input file is provided, the output file will be written to the given directory with the extension changed to .css/.html)") .default_value("") .hide_default_value(true) .takes_value(true) @@ -44,7 +44,7 @@ fn main() { ) .arg(Arg::with_name("INPUT") - .help("Sets the input file to compile (Leave blank to read from stdin)") + .help("Sets the input file to compile (Leave blank or set to '-' to read from stdin)") .index(1) ) .get_matches();