From 4442ed0d2fee86c05dcf3733b97a3346022601df Mon Sep 17 00:00:00 2001 From: Paul Sori Date: Sat, 18 Aug 2018 14:44:16 -0400 Subject: [PATCH] Spelling --- mstream-command-line-boot-wrapper.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/mstream-command-line-boot-wrapper.js b/mstream-command-line-boot-wrapper.js index b44cef1..40e680a 100755 --- a/mstream-command-line-boot-wrapper.js +++ b/mstream-command-line-boot-wrapper.js @@ -1,16 +1,16 @@ #!/usr/bin/env node "use strict"; -// Check if we are in an electron enviroment +// Check if we are in an electron environment if (process.versions["electron"]) { - // off to a seperate electron boot enviroment + // off to a separate electron boot environment require("./mstream-electron.js"); return; } var program = require("./modules/config/configure-commander.js").setup(process.argv); -// User ran a miantnence operation. End the program +// User ran a maintenance operation. End the program if(!program){ return; }