Skip to content

Commit

Permalink
Remove needless semicolons
Browse files Browse the repository at this point in the history
  • Loading branch information
kyouko-taiga committed Oct 3, 2023
1 parent 8532fc2 commit 3e792ed
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Library/Hylo/Core/Numbers/Integers/Int.hylo
Original file line number Diff line number Diff line change
Expand Up @@ -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`.
Expand Down

0 comments on commit 3e792ed

Please sign in to comment.