Skip to content

Commit 9eeef7e

Browse files
committed
lint
1 parent ffd1d21 commit 9eeef7e

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/geom/rectangle/Union.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ var Union = function (rectA, rectB, out)
3030
var w = Math.max(rectA.right, rectB.right) - x;
3131
var h = Math.max(rectA.bottom, rectB.bottom) - y;
3232

33-
return out.setTo(x, y,w, h);
33+
return out.setTo(x, y, w, h);
3434
};
3535

3636
module.exports = Union;

0 commit comments

Comments
 (0)