diff --git a/index.html b/index.html index 5a9e7009c5..91df6539ba 100644 --- a/index.html +++ b/index.html @@ -56,7 +56,7 @@ body { Source code on the left, compiled code and AST on the right (or error).
Note: Chrome/Chromium currently reports "Uncaught JavaScript Exception". To work around this problem, enable the debug console (Ctrl+Shift+i) and reload.
-Version: d810b3d1... 2015-06-12 +Version: 53659d48... 2015-06-18
@@ -219,7 +219,7 @@ var formatGasEstimates = function(data) { text += ' ' + fun + ': ' + gasToText(data.external[fun]) + '\n'; text += 'Internal:\n'; for (var fun in data.internal) - text += ' ' + fun + ': ' + gasToText(data.external[fun]) + '\n'; + text += ' ' + fun + ': ' + gasToText(data.internal[fun]) + '\n'; return text; }; var formatAssemblyText = function(asm, prefix, source) {