about summary refs log tree commit diff
path: root/src/libcore/num/i16.rs
diff options
context:
space:
mode:
authorAlex Crichton <alex@alexcrichton.com>2015-08-17 13:23:36 -0700
committerAlex Crichton <alex@alexcrichton.com>2015-08-17 14:03:32 -0700
commit8cb4d8671afecdcfd2432e08c8f43673ce51f67d (patch)
treec42f8eb09400c6b9d5004d22155299eb0be03410 /src/libcore/num/i16.rs
parent47ea0cfb6bd250c970e3a61d62bfa1b1c7bb27d4 (diff)
downloadrust-8cb4d8671afecdcfd2432e08c8f43673ce51f67d.tar.gz
rust-8cb4d8671afecdcfd2432e08c8f43673ce51f67d.zip
std: Clean up primitive integer modules
All of the modules in the standard library were just straight reexports of those
in libcore, so remove all the "macro modules" from the standard library and just
reexport what's in core directly.
Diffstat (limited to 'src/libcore/num/i16.rs')
-rw-r--r--src/libcore/num/i16.rs4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/libcore/num/i16.rs b/src/libcore/num/i16.rs
index dacb4ebcdfa..40544979417 100644
--- a/src/libcore/num/i16.rs
+++ b/src/libcore/num/i16.rs
@@ -8,7 +8,9 @@
 // option. This file may not be copied, modified, or distributed
 // except according to those terms.
 
-//! Operations and constants for signed 16-bits integers (`i16` type)
+//! The 16-bit signed integer type.
+//!
+//! *[See also the `i16` primitive type](../primitive.i16.html).*
 
 #![stable(feature = "rust1", since = "1.0.0")]