Fix broken links for core primitives

Redirects existing links for more details on primitive types in the
`core` module to the ones that exist in the `std` module.
This commit is contained in:
Michael Huynh 2016-03-01 20:44:48 +08:00
parent 776a0f2cee
commit dc97f84be4
12 changed files with 12 additions and 12 deletions

View File

@ -12,7 +12,7 @@
//! up to a certain length. Eventually we should able to generalize
//! to all lengths.
//!
//! *[See also the array primitive type](../primitive.array.html).*
//! *[See also the array primitive type](../../std/primitive.array.html).*
#![unstable(feature = "fixed_size_array",
reason = "traits and impls are better expressed through generic \

View File

@ -10,7 +10,7 @@
//! The 16-bit signed integer type.
//!
//! *[See also the `i16` primitive type](../primitive.i16.html).*
//! *[See also the `i16` primitive type](../../std/primitive.i16.html).*
#![stable(feature = "rust1", since = "1.0.0")]

View File

@ -10,7 +10,7 @@
//! The 32-bit signed integer type.
//!
//! *[See also the `i32` primitive type](../primitive.i32.html).*
//! *[See also the `i32` primitive type](../../std/primitive.i32.html).*
#![stable(feature = "rust1", since = "1.0.0")]

View File

@ -10,7 +10,7 @@
//! The 64-bit signed integer type.
//!
//! *[See also the `i64` primitive type](../primitive.i64.html).*
//! *[See also the `i64` primitive type](../../std/primitive.i64.html).*
#![stable(feature = "rust1", since = "1.0.0")]

View File

@ -10,7 +10,7 @@
//! The 8-bit signed integer type.
//!
//! *[See also the `i8` primitive type](../primitive.i8.html).*
//! *[See also the `i8` primitive type](../../std/primitive.i8.html).*
#![stable(feature = "rust1", since = "1.0.0")]

View File

@ -10,7 +10,7 @@
//! The pointer-sized signed integer type.
//!
//! *[See also the `isize` primitive type](../primitive.isize.html).*
//! *[See also the `isize` primitive type](../../std/primitive.isize.html).*
#![stable(feature = "rust1", since = "1.0.0")]

View File

@ -10,7 +10,7 @@
//! The 16-bit unsigned integer type.
//!
//! *[See also the `u16` primitive type](../primitive.u16.html).*
//! *[See also the `u16` primitive type](../../std/primitive.u16.html).*
#![stable(feature = "rust1", since = "1.0.0")]

View File

@ -10,7 +10,7 @@
//! The 32-bit unsigned integer type.
//!
//! *[See also the `u32` primitive type](../primitive.u32.html).*
//! *[See also the `u32` primitive type](../../std/primitive.u32.html).*
#![stable(feature = "rust1", since = "1.0.0")]

View File

@ -10,7 +10,7 @@
//! The 64-bit unsigned integer type.
//!
//! *[See also the `u64` primitive type](../primitive.u64.html).*
//! *[See also the `u64` primitive type](../../std/primitive.u64.html).*
#![stable(feature = "rust1", since = "1.0.0")]

View File

@ -10,7 +10,7 @@
//! The 8-bit unsigned integer type.
//!
//! *[See also the `u8` primitive type](../primitive.u8.html).*
//! *[See also the `u8` primitive type](../../std/primitive.u8.html).*
#![stable(feature = "rust1", since = "1.0.0")]

View File

@ -10,7 +10,7 @@
//! The pointer-sized unsigned integer type.
//!
//! *[See also the `usize` primitive type](../primitive.usize.html).*
//! *[See also the `usize` primitive type](../../std/primitive.usize.html).*
#![stable(feature = "rust1", since = "1.0.0")]

View File

@ -12,7 +12,7 @@
//! Raw, unsafe pointers, `*const T`, and `*mut T`
//!
//! *[See also the pointer primitive types](../primitive.pointer.html).*
//! *[See also the pointer primitive types](../../std/primitive.pointer.html).*
#![stable(feature = "rust1", since = "1.0.0")]