diff --git a/Library/Hylo/Core/Numbers/Integers/Int.hylo b/Library/Hylo/Core/Numbers/Integers/Int.hylo index e05b27dd1..38b2fd7ca 100644 --- a/Library/Hylo/Core/Numbers/Integers/Int.hylo +++ b/Library/Hylo/Core/Numbers/Integers/Int.hylo @@ -30,10 +30,10 @@ public type Int { if r == 0 { return self.copy() } else if r < 0 { - return -(abs() - r); + return -(abs() - r) } - return self + stride - r; + return self + stride - r } /// Returns `self`.