corrected the grammar of an option description (#10691)

* grammar correction of an option description

(missed in #10589)

* changed description to be consistent with others

Co-Authored-By: Huáng Jùnliàng <jlhwung@gmail.com>

* ran prettier
This commit is contained in:
Mohammad Ahmadi 2019-11-11 13:09:36 +03:30 committed by Nicolò Ribaudo
parent 2b082601a7
commit 8e5f2dc929

View File

@ -73,7 +73,10 @@ commander.option(
"Do not include superfluous whitespace characters and line terminators.", "Do not include superfluous whitespace characters and line terminators.",
booleanify, booleanify,
); );
commander.option("--minified", "save as much bytes when printing [true|false]"); commander.option(
"--minified [true|false]",
"Save as many bytes when printing.",
);
commander.option( commander.option(
"--auxiliary-comment-before [string]", "--auxiliary-comment-before [string]",
"Print a comment before any injected non-user code.", "Print a comment before any injected non-user code.",