diff --git a/lib/dashboard/console.js b/lib/dashboard/console.js index 1e7e3919c..f3901874c 100644 --- a/lib/dashboard/console.js +++ b/lib/dashboard/console.js @@ -29,7 +29,7 @@ Console.prototype.executeCmd = function(cmd, callback) { 'web3 - instantiated web3.js object configured to the current environment', 'quit - to immediatly exit', '', - 'The web3 object and the interfaces for the deployed contrats and their methods are also available' + 'The web3 object and the interfaces for the deployed contracts and their methods are also available' ]; return callback(helpText.join('\n')); } else if (cmd === 'quit') { @@ -50,4 +50,3 @@ Console.prototype.executeCmd = function(cmd, callback) { }; module.exports = Console; -