From 26ea38e23ae2899119242b7c69eaacaacbb41716 Mon Sep 17 00:00:00 2001 From: Matt Brubeck Date: Sun, 4 Jun 2017 12:23:01 -0700 Subject: [PATCH] Fix typo in formatMirScopes function Fixes an editing error in #284. --- static/web.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/static/web.js b/static/web.js index fbc66a6..460568f 100644 --- a/static/web.js +++ b/static/web.js @@ -598,7 +598,7 @@ .replace(/<anon>:(\d+):(\d+)/mg, jumpToPoint); // new errors } - function formatMir(text) { + function formatMirScopes(text) { return text.replace(/<anon>:(\d+):(\d+):\s+(\d+):(\d+)/mg, jumpToRegion); }