We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 51530cb commit d138345Copy full SHA for d138345
src/Data/EuclideanRing.js
@@ -21,7 +21,7 @@ exports.quot = function (x) {
21
22
exports.intMod = function (x) {
23
return function (y) {
24
- var yy = Math.abs(y)
+ var yy = Math.abs(y);
25
return ((x % yy) + yy) % yy;
26
};
27
0 commit comments