Commit b65c40bb by TimLudwinski

Fixed syntax error

parent 2b244468
...@@ -232,7 +232,7 @@ var mergeDocument = function(docResult, interimResults) { ...@@ -232,7 +232,7 @@ var mergeDocument = function(docResult, interimResults) {
} else { } else {
existing.types[type] = 1; existing.types[type] = 1;
if (config.logKeysContinuously) { 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) { ...@@ -242,7 +242,7 @@ var mergeDocument = function(docResult, interimResults) {
for (var newType in docResult[key]) { for (var newType in docResult[key]) {
types[newType] = 1; types[newType] = 1;
if (config.logKeysContinuously) { 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}; 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