From 8e5f2dc929cb860b9090e6cb71df148fbe2b791b Mon Sep 17 00:00:00 2001 From: Mohammad Ahmadi Date: Mon, 11 Nov 2019 13:09:36 +0330 Subject: [PATCH] corrected the grammar of an option description (#10691) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * grammar correction of an option description (missed in #10589) * changed description to be consistent with others Co-Authored-By: Huáng Jùnliàng * ran prettier --- packages/babel-cli/src/babel/options.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/packages/babel-cli/src/babel/options.js b/packages/babel-cli/src/babel/options.js index 04a648c1fd..169c61ffa5 100644 --- a/packages/babel-cli/src/babel/options.js +++ b/packages/babel-cli/src/babel/options.js @@ -73,7 +73,10 @@ commander.option( "Do not include superfluous whitespace characters and line terminators.", 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( "--auxiliary-comment-before [string]", "Print a comment before any injected non-user code.",