From 25d99bcf2fd931b0e5350126324ec4b3a2b2b98b Mon Sep 17 00:00:00 2001 From: Iuri Matias Date: Tue, 19 Dec 2017 15:48:56 -0500 Subject: [PATCH] fix linting error --- lib/cmd.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/cmd.js b/lib/cmd.js index 2b31c0099..5a9f804e2 100644 --- a/lib/cmd.js +++ b/lib/cmd.js @@ -172,7 +172,7 @@ class Cmd { program .action(function (cmd) { console.log('unknown command "%s"'.red, cmd); - let dictionary = ['new', 'demo', 'build', 'run', 'blockchain', 'simulator', 'test', 'upload', 'version' ]; + let dictionary = ['new', 'demo', 'build', 'run', 'blockchain', 'simulator', 'test', 'upload', 'version']; let suggestion = utils.proposeAlternative(cmd, dictionary); if (suggestion) { console.log('did you mean "%s"?'.green, suggestion);