Commit b82a579a authored by yann300's avatar yann300

typo

parent afcae85b
...@@ -24,7 +24,7 @@ class CmdInterpreterAPI { ...@@ -24,7 +24,7 @@ class CmdInterpreterAPI {
'remix.loadgist(id)': 'Load a gist in the file explorer.', '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.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.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' 'remix.help()': 'Display this help message'
} }
} }
...@@ -84,6 +84,7 @@ class CmdInterpreterAPI { ...@@ -84,6 +84,7 @@ class CmdInterpreterAPI {
var help = yo`<div></div>` var help = yo`<div></div>`
for (var k in self.commandHelp) { for (var k in self.commandHelp) {
help.appendChild(yo`<div>${k}: ${self.commandHelp[k]}</div>`) help.appendChild(yo`<div>${k}: ${self.commandHelp[k]}</div>`)
help.appendChild(yo`<br>`)
} }
self._components.terminal.commands.html(help) self._components.terminal.commands.html(help)
if (cb) cb() if (cb) cb()
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment