Document optionality of removeMeta

This commit is contained in:
Tony Garnock-Jones 2016-02-02 14:36:47 -05:00
parent 4d87f071da
commit d1b3ffdf81
1 changed files with 1 additions and 1 deletions

View File

@ -106,7 +106,7 @@ Patch.prototype.limit = function (bound) {
};
var metaLabelSet = Immutable.Set(["meta"]);
Patch.prototype.computeAggregate = function (label, base, removeMeta) {
Patch.prototype.computeAggregate = function (label, base, removeMeta /* optional flag */) {
return new Patch(Route.subtract(this.added, base, addCombiner),
Route.subtract(this.removed, base, removeCombiner));