From 5bdc2003760ec8e07b490bb1ac1f53048ccfcfb6 Mon Sep 17 00:00:00 2001 From: Patrick Flor Date: Mon, 2 Mar 2015 12:08:12 -0800 Subject: [PATCH] Fix tense of error message Thanks for putting this project together; really enjoying hacking with it so far! --- atom/browser/default_app/main.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/atom/browser/default_app/main.js b/atom/browser/default_app/main.js index 103c05cc1129..06de0e26529c 100644 --- a/atom/browser/default_app/main.js +++ b/atom/browser/default_app/main.js @@ -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'); process.exit(1); } else { - console.error('App throwed an error when running', e); + console.error('App threw an error when running', e); throw e; } }