Skip to content

Commit d138345

Browse files
committed
Fix missing semicolon
1 parent 51530cb commit d138345

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Data/EuclideanRing.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ exports.quot = function (x) {
2121

2222
exports.intMod = function (x) {
2323
return function (y) {
24-
var yy = Math.abs(y)
24+
var yy = Math.abs(y);
2525
return ((x % yy) + yy) % yy;
2626
};
2727
};

0 commit comments

Comments
 (0)