Skip to content

Commit cb310b6

Browse files
committed
pp
1 parent 8dfa994 commit cb310b6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/flutter_html_math/lib/flutter_html_math.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ String _parseMathRecursive(dom.Node node, String parsed) {
103103
parsed = '$parsed\\begin{matrix}$inner\\end{matrix}';
104104
}
105105
if (node.localName == "mtd") {
106-
nodeList.forEach((element) {
106+
for (var element in nodeList) {
107107
parsed = _parseMathRecursive(element, parsed);
108108
});
109109
parsed = '$parsed & ';

0 commit comments

Comments
 (0)