From 4f1317dcdd58e5180ec42c78363006ec3db9729b Mon Sep 17 00:00:00 2001 From: Andy Nogueira Date: Wed, 22 Feb 2017 08:10:33 -0500 Subject: [PATCH] Minor typo in help message --- lib/dashboard/console.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) 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; -