Minor typo in help message

This commit is contained in:
Andy Nogueira 2017-02-22 08:10:33 -05:00
parent 87ff194ce4
commit 4f1317dcdd
1 changed files with 1 additions and 2 deletions

View File

@ -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;