Fix tense of error message

Thanks for putting this project together; really enjoying hacking with
it so far!
This commit is contained in:
Patrick Flor 2015-03-02 12:08:12 -08:00
parent f2c8ea085b
commit 5bdc200376

View file

@ -53,7 +53,7 @@ if (option.file && !option.webdriver) {
dialog.showErrorBox('Error opening app', 'The app provided is not a valid atom-shell app, please read the docs on how to write one:\nhttps://github.com/atom/atom-shell/tree/master/docs'); dialog.showErrorBox('Error opening app', 'The app provided is not a valid atom-shell app, please read the docs on how to write one:\nhttps://github.com/atom/atom-shell/tree/master/docs');
process.exit(1); process.exit(1);
} else { } else {
console.error('App throwed an error when running', e); console.error('App threw an error when running', e);
throw e; throw e;
} }
} }