summary refs log tree commit diff
path: root/src/libcore
diff options
context:
space:
mode:
authorBrian Anderson <banderson@mozilla.com>2012-03-10 17:29:58 -0800
committerBrian Anderson <banderson@mozilla.com>2012-03-10 17:29:58 -0800
commit035197609a7f5c604797e5fbbdc6e14c579a026f (patch)
tree4da4d3c2083aaf9b9e825c69220851602d9b923a /src/libcore
parent6d4fb359120a603241195cf02251efb5f83787fa (diff)
downloadrust-035197609a7f5c604797e5fbbdc6e14c579a026f.tar.gz
rust-035197609a7f5c604797e5fbbdc6e14c579a026f.zip
core: Formatting
Diffstat (limited to 'src/libcore')
-rw-r--r--src/libcore/uint.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libcore/uint.rs b/src/libcore/uint.rs
index 8e57eab7ea7..341a155e87b 100644
--- a/src/libcore/uint.rs
+++ b/src/libcore/uint.rs
@@ -10,8 +10,8 @@ pure fn add(x: uint, y: uint) -> uint { ret x + y; }
 pure fn sub(x: uint, y: uint) -> uint { ret x - y; }
 pure fn mul(x: uint, y: uint) -> uint { ret x * y; }
 pure fn div(x: uint, y: uint) -> uint { ret x / y; }
-
 pure fn rem(x: uint, y: uint) -> uint { ret x % y; }
+
 pure fn lt(x: uint, y: uint) -> bool { ret x < y; }
 pure fn le(x: uint, y: uint) -> bool { ret x <= y; }
 pure fn eq(x: uint, y: uint) -> bool { ret x == y; }