about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorWei-Ming Yang <rick68@users.noreply.github.com>2015-07-09 12:09:54 +0800
committerWei-Ming Yang <rick68@users.noreply.github.com>2015-07-09 12:09:54 +0800
commita15c3c5ef5b05b5eb0b3bdfa2f3656fdac2f6606 (patch)
treecd4eaf8c4655d9ac002bec1d892c56b563541376 /src
parent3198e1acf3301fdcfe527feb327ccd02d0e4434b (diff)
downloadrust-a15c3c5ef5b05b5eb0b3bdfa2f3656fdac2f6606.tar.gz
rust-a15c3c5ef5b05b5eb0b3bdfa2f3656fdac2f6606.zip
Update intrinsics.rs
fix typos
Diffstat (limited to 'src')
-rw-r--r--src/libcore/intrinsics.rs10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/libcore/intrinsics.rs b/src/libcore/intrinsics.rs
index 455928077da..74901553149 100644
--- a/src/libcore/intrinsics.rs
+++ b/src/libcore/intrinsics.rs
@@ -586,18 +586,18 @@ extern "rust-intrinsic" {
     pub fn overflowing_mul<T>(a: T, b: T) -> T;
 
     /// Performs an unchecked signed division, which results in undefined behavior,
-    /// in cases where y == 0, or x == int::MIN and y == -1
+    /// in cases where y == 0, or x == isize::MIN and y == -1
     pub fn unchecked_sdiv<T>(x: T, y: T) -> T;
     /// Performs an unchecked unsigned division, which results in undefined behavior,
     /// in cases where y == 0
     pub fn unchecked_udiv<T>(x: T, y: T) -> T;
 
     /// Returns the remainder of an unchecked signed division, which results in
-    /// undefined behavior, in cases where y == 0, or x == int::MIN and y == -1
-    pub fn unchecked_urem<T>(x: T, y: T) -> T;
-    /// Returns the remainder of an unchecked signed division, which results in
-    /// undefined behavior, in cases where y == 0
+    /// undefined behavior, in cases where y == 0, or x == isize::MIN and y == -1
     pub fn unchecked_srem<T>(x: T, y: T) -> T;
+    /// Returns the remainder of an unchecked unsigned division, which results in
+    /// undefined behavior, in cases where y == 0
+    pub fn unchecked_urem<T>(x: T, y: T) -> T;
 
     /// Returns the value of the discriminant for the variant in 'v',
     /// cast to a `u64`; if `T` has no discriminant, returns 0.