Skip to content

Commit

Permalink
removed semicolons to match coding style
Browse files Browse the repository at this point in the history
the rest of the project is coded in a semicolon free style. this commit makes a change to match that style in one location
  • Loading branch information
Daniel Grießhaber authored and Daniel Grießhaber committed Mar 8, 2016
1 parent 3b37022 commit eda358f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/sorted_set.js
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,7 @@ lunr.SortedSet.prototype.union = function (otherSet) {
unionSet = longSet.clone()

for(var i = 0, shortSetElements = shortSet.toArray(); i < shortSetElements.length; i++){
unionSet.add(shortSetElements[i]);
unionSet.add(shortSetElements[i])
}

return unionSet
Expand Down

0 comments on commit eda358f

Please sign in to comment.