Skip to content

Commit 0351976

Browse files
committed
core: Formatting
1 parent 6d4fb35 commit 0351976

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/libcore/uint.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ pure fn add(x: uint, y: uint) -> uint { ret x + y; }
1010
pure fn sub(x: uint, y: uint) -> uint { ret x - y; }
1111
pure fn mul(x: uint, y: uint) -> uint { ret x * y; }
1212
pure fn div(x: uint, y: uint) -> uint { ret x / y; }
13-
1413
pure fn rem(x: uint, y: uint) -> uint { ret x % y; }
14+
1515
pure fn lt(x: uint, y: uint) -> bool { ret x < y; }
1616
pure fn le(x: uint, y: uint) -> bool { ret x <= y; }
1717
pure fn eq(x: uint, y: uint) -> bool { ret x == y; }

0 commit comments

Comments
 (0)