Commit b65c40bb by TimLudwinski

Fixed syntax error

parent 2b244468
......@@ -232,7 +232,7 @@ var mergeDocument = function(docResult, interimResults) {
} else {
existing.types[type] = 1;
if (config.logKeysContinuously) {
log('Found new key type "' + key + '" type "' + type '"');
log('Found new key type "' + key + '" type "' + type + '"');
}
}
}
......@@ -242,7 +242,7 @@ var mergeDocument = function(docResult, interimResults) {
for (var newType in docResult[key]) {
types[newType] = 1;
if (config.logKeysContinuously) {
log('Found new key type "' + key + '" type "' + newType '"');
log('Found new key type "' + key + '" type "' + newType + '"');
}
}
interimResults[key] = {'types': types,'totalOccurrences':1};
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment