From 1c6b431bf8392cf4de14aa58e2de9d528257b099 Mon Sep 17 00:00:00 2001 From: Lee Dohm <1038121+lee-dohm@users.noreply.github.com> Date: Sat, 10 Mar 2018 09:15:47 -0800 Subject: [PATCH] Remove extra hyphen in option description --- src/main-process/parse-command-line.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main-process/parse-command-line.js b/src/main-process/parse-command-line.js index 3b0654962..5c074a14e 100644 --- a/src/main-process/parse-command-line.js +++ b/src/main-process/parse-command-line.js @@ -44,7 +44,7 @@ module.exports = function parseCommandLine (processArgs) { 'Do not load packages from ~/.atom/packages or ~/.atom/dev/packages.' ) options.boolean('benchmark').describe('benchmark', 'Open a new window that runs the specified benchmarks.') - options.boolean('benchmark-test').describe('benchmark--test', 'Run a faster version of the benchmarks in headless mode.') + options.boolean('benchmark-test').describe('benchmark-test', 'Run a faster version of the benchmarks in headless mode.') options.alias('t', 'test').boolean('t').describe('t', 'Run the specified specs and exit with error code on failures.') options.alias('m', 'main-process').boolean('m').describe('m', 'Run the specified specs in the main process.') options.string('timeout').describe(