about summary refs log tree commit diff
path: root/src/libstd/num
diff options
context:
space:
mode:
authorJake Goulding <jake.goulding@gmail.com>2015-05-27 19:16:00 -0400
committerJake Goulding <jake.goulding@gmail.com>2015-05-27 19:16:00 -0400
commit875d3562452930657ab59766568c02bcfab851bd (patch)
tree0174ac374e8fd191975d0e31199df3584a89758f /src/libstd/num
parent1742a01f8d5717f1ab2f445c4d4656633b4c88b9 (diff)
downloadrust-875d3562452930657ab59766568c02bcfab851bd.tar.gz
rust-875d3562452930657ab59766568c02bcfab851bd.zip
Remove mentions of int / uint from the isize / usize docs
Diffstat (limited to 'src/libstd/num')
-rw-r--r--src/libstd/num/isize.rs4
-rw-r--r--src/libstd/num/usize.rs4
2 files changed, 0 insertions, 8 deletions
diff --git a/src/libstd/num/isize.rs b/src/libstd/num/isize.rs
index 7fb2cd81aba..aa89f858f6f 100644
--- a/src/libstd/num/isize.rs
+++ b/src/libstd/num/isize.rs
@@ -9,10 +9,6 @@
 // except according to those terms.
 
 //! Operations and constants for pointer-sized signed integers (`isize` type)
-//!
-//! This type was recently added to replace `int`. The rollout of the
-//! new type will gradually take place over the alpha cycle along with
-//! the development of clearer conventions around integer types.
 
 #![stable(feature = "rust1", since = "1.0.0")]
 #![doc(primitive = "isize")]
diff --git a/src/libstd/num/usize.rs b/src/libstd/num/usize.rs
index 19964c306a7..b54d8ae96c5 100644
--- a/src/libstd/num/usize.rs
+++ b/src/libstd/num/usize.rs
@@ -9,10 +9,6 @@
 // except according to those terms.
 
 //! Operations and constants for pointer-sized unsigned integers (`usize` type)
-//!
-//! This type was recently added to replace `uint`. The rollout of the
-//! new type will gradually take place over the alpha cycle along with
-//! the development of clearer conventions around integer types.
 
 #![stable(feature = "rust1", since = "1.0.0")]
 #![doc(primitive = "usize")]