Skip to content

Commit

Permalink
Fix broken links for core primitives
Browse files Browse the repository at this point in the history
Redirects existing links for more details on primitive types in the
`core` module to the ones that exist in the `std` module.
  • Loading branch information
miqh committed Mar 1, 2016
1 parent 776a0f2 commit dc97f84
Show file tree
Hide file tree
Showing 12 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion src/libcore/array.rs
Expand Up @@ -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 \
Expand Down
2 changes: 1 addition & 1 deletion src/libcore/num/i16.rs
Expand Up @@ -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")]

Expand Down
2 changes: 1 addition & 1 deletion src/libcore/num/i32.rs
Expand Up @@ -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")]

Expand Down
2 changes: 1 addition & 1 deletion src/libcore/num/i64.rs
Expand Up @@ -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")]

Expand Down
2 changes: 1 addition & 1 deletion src/libcore/num/i8.rs
Expand Up @@ -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")]

Expand Down
2 changes: 1 addition & 1 deletion src/libcore/num/isize.rs
Expand Up @@ -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")]

Expand Down
2 changes: 1 addition & 1 deletion src/libcore/num/u16.rs
Expand Up @@ -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")]

Expand Down
2 changes: 1 addition & 1 deletion src/libcore/num/u32.rs
Expand Up @@ -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")]

Expand Down
2 changes: 1 addition & 1 deletion src/libcore/num/u64.rs
Expand Up @@ -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")]

Expand Down
2 changes: 1 addition & 1 deletion src/libcore/num/u8.rs
Expand Up @@ -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")]

Expand Down
2 changes: 1 addition & 1 deletion src/libcore/num/usize.rs
Expand Up @@ -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")]

Expand Down
2 changes: 1 addition & 1 deletion src/libcore/ptr.rs
Expand Up @@ -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")]

Expand Down

0 comments on commit dc97f84

Please sign in to comment.