From 116ca22def17b97edf5605e24c8c71b4b9a8a460 Mon Sep 17 00:00:00 2001 From: cphamlet Date: Mon, 17 Dec 2018 21:29:23 -0600 Subject: [PATCH] Minor typo for -f flag in cli (#9201) --- packages/babel-cli/src/babel/options.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/babel-cli/src/babel/options.js b/packages/babel-cli/src/babel/options.js index d8a5bd4f3f..41cc0fb83e 100644 --- a/packages/babel-cli/src/babel/options.js +++ b/packages/babel-cli/src/babel/options.js @@ -22,7 +22,7 @@ commander.option( "comma-separated list of plugin names", collect, ); -commander.option("--config-file [path]", "Path a to .babelrc file to use"); +commander.option("--config-file [path]", "Path to a .babelrc file to use"); commander.option( "--env-name [name]", "The name of the 'env' to use when loading configs and plugins. " +