diff options
| author | Alex Crichton <alex@alexcrichton.com> | 2015-08-17 13:23:36 -0700 |
|---|---|---|
| committer | Alex Crichton <alex@alexcrichton.com> | 2015-08-17 14:03:32 -0700 |
| commit | 8cb4d8671afecdcfd2432e08c8f43673ce51f67d (patch) | |
| tree | c42f8eb09400c6b9d5004d22155299eb0be03410 /src/libcore/num/u16.rs | |
| parent | 47ea0cfb6bd250c970e3a61d62bfa1b1c7bb27d4 (diff) | |
| download | rust-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/u16.rs')
| -rw-r--r-- | src/libcore/num/u16.rs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/libcore/num/u16.rs b/src/libcore/num/u16.rs index ecf79944848..68e50e8a400 100644 --- a/src/libcore/num/u16.rs +++ b/src/libcore/num/u16.rs @@ -8,7 +8,9 @@ // option. This file may not be copied, modified, or distributed // except according to those terms. -//! Operations and constants for unsigned 16-bits integers (`u16` type) +//! The 16-bit unsigned integer type. +//! +//! *[See also the `u16` primitive type](../primitive.u16.html).* #![stable(feature = "rust1", since = "1.0.0")] |
