From bc33ca749313268baf4c86b7d72ec462ba31373f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rub=C3=A9n=20Rinc=C3=B3n?= Date: Sat, 8 Apr 2017 07:53:19 +0200 Subject: [PATCH] That semicolon was not needed --- static/compiler.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/static/compiler.js b/static/compiler.js index ef8045eb..17d46d04 100644 --- a/static/compiler.js +++ b/static/compiler.js @@ -274,7 +274,7 @@ define(function (require) { Compiler.prototype.getBinaryForLine = function (line) { var obj = this.assembly[line - 1]; - if (!obj) return '
????
????
';; + if (!obj) return '
????
????
'; var address = obj.address ? obj.address.toString(16) : ""; var opcodes = '
'; _.each(obj.opcodes, function (op) {