diff --git a/lib/_debugger.js b/lib/_debugger.js index d0133d99086..b374df634a5 100644 --- a/lib/_debugger.js +++ b/lib/_debugger.js @@ -721,7 +721,7 @@ Interface.prototype.handleBreak = function(r) { Interface.prototype.requireConnection = function() { - if (!this.client) throw Error('App isn\'t running... Try `run()` instead'); + if (!this.client) throw Error('App isn\'t running... Try `run` instead'); }; Interface.prototype.controlEval = function(code, context, filename, callback) { @@ -806,7 +806,7 @@ Interface.prototype.help = function() { // Run script Interface.prototype.run = function() { if (this.child) { - throw Error('App is already running... Try `restart()` instead'); + throw Error('App is already running... Try `restart` instead'); } else { this.trySpawn(); } @@ -815,7 +815,7 @@ Interface.prototype.run = function() { // Restart script Interface.prototype.restart = function() { - if (!this.child) throw Error('App isn\'t running... Try `run()` instead'); + if (!this.child) throw Error('App isn\'t running... Try `run` instead'); var self = this;