Missing semi-colon

This commit is contained in:
stuart nelson 2016-10-22 19:50:35 +02:00
parent 631af4a35a
commit b1a07d1fcb
1 changed files with 1 additions and 1 deletions

View File

@ -80,7 +80,7 @@ function match(root, labelSet) {
if (root.children) {
for (var j = 0; j < root.children.length; j++) {
var child = root.children[j];
var matches = match(child, labelSet)
var matches = match(child, labelSet);
all = all.concat(matches);