fix lint errors

This commit is contained in:
d98762625 2018-03-25 17:44:10 +01:00
parent 951568ce22
commit f3610e7c95
1 changed files with 25 additions and 25 deletions

View File

@ -145,7 +145,7 @@ class SetOps {
* @return {Object[]}
*/
runSymmetricDifference(a, b) {
return this.runSetDifference(a,b)
return this.runSetDifference(a, b)
.concat(this.runSetDifference(b, a));
}