Skip to content

Commit a0db8d4

Browse files
Update help messages
1 parent b04cf2b commit a0db8d4

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/main.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ fn main() {
2525
.short("o")
2626
.long("out")
2727
.value_name("OUTPUT")
28-
.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)")
28+
.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)")
2929
.default_value("")
3030
.hide_default_value(true)
3131
.takes_value(true)
@@ -44,7 +44,7 @@ fn main() {
4444
)
4545

4646
.arg(Arg::with_name("INPUT")
47-
.help("Sets the input file to compile (Leave blank to read from stdin)")
47+
.help("Sets the input file to compile (Leave blank or set to '-' to read from stdin)")
4848
.index(1)
4949
)
5050
.get_matches();

0 commit comments

Comments
 (0)