From ae90dbb78ec0775bbc50bc52ccac56f9cee72b42 Mon Sep 17 00:00:00 2001 From: Ron Kok Date: Sun, 30 Aug 2020 12:33:39 -0700 Subject: [PATCH] refactor: Delete obsolete comment re: mn elements (#2472) --- src/functions/symbolsOrd.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/functions/symbolsOrd.js b/src/functions/symbolsOrd.js index 0121f84f..db6ed0c5 100644 --- a/src/functions/symbolsOrd.js +++ b/src/functions/symbolsOrd.js @@ -47,8 +47,6 @@ defineFunctionBuilders({ if (group.mode === 'text') { node = new mathMLTree.MathNode("mtext", [text]); } else if (/[0-9]/.test(group.text)) { - // TODO(kevinb) merge adjacent nodes - // do it as a post processing step node = new mathMLTree.MathNode("mn", [text]); } else if (group.text === "\\prime") { node = new mathMLTree.MathNode("mo", [text]);