From b82a579a9efff988e58e9248009c5612986ae4a0 Mon Sep 17 00:00:00 2001 From: yann300 Date: Wed, 18 Jul 2018 13:43:36 +0200 Subject: [PATCH] typo --- src/lib/cmdInterpreterAPI.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/lib/cmdInterpreterAPI.js b/src/lib/cmdInterpreterAPI.js index 797356c9a7..5f1903e83a 100644 --- a/src/lib/cmdInterpreterAPI.js +++ b/src/lib/cmdInterpreterAPI.js @@ -24,7 +24,7 @@ class CmdInterpreterAPI { 'remix.loadgist(id)': 'Load a gist in the file explorer.', 'remix.loadurl(url)': 'Load the given url in the file explorer. The url can be of type github, swarm or ipfs.', 'remix.setproviderurl(url)': 'Change the current provider to Web3 provider and set the url endpoint.', - 'remix.exeCurrent()': 'Run the script currenttly displayed in the editor', + 'remix.exeCurrent()': 'Run the script currently displayed in the editor', 'remix.help()': 'Display this help message' } } @@ -84,6 +84,7 @@ class CmdInterpreterAPI { var help = yo`
` for (var k in self.commandHelp) { help.appendChild(yo`
${k}: ${self.commandHelp[k]}
`) + help.appendChild(yo`
`) } self._components.terminal.commands.html(help) if (cb) cb()