Skip to content

Commit dc97f84

Browse files
committed
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.
1 parent 776a0f2 commit dc97f84

File tree

12 files changed

+12
-12
lines changed

12 files changed

+12
-12
lines changed

src/libcore/array.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
//! up to a certain length. Eventually we should able to generalize
1313
//! to all lengths.
1414
//!
15-
//! *[See also the array primitive type](../primitive.array.html).*
15+
//! *[See also the array primitive type](../../std/primitive.array.html).*
1616
1717
#![unstable(feature = "fixed_size_array",
1818
reason = "traits and impls are better expressed through generic \

src/libcore/num/i16.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
//! The 16-bit signed integer type.
1212
//!
13-
//! *[See also the `i16` primitive type](../primitive.i16.html).*
13+
//! *[See also the `i16` primitive type](../../std/primitive.i16.html).*
1414
1515
#![stable(feature = "rust1", since = "1.0.0")]
1616

src/libcore/num/i32.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
//! The 32-bit signed integer type.
1212
//!
13-
//! *[See also the `i32` primitive type](../primitive.i32.html).*
13+
//! *[See also the `i32` primitive type](../../std/primitive.i32.html).*
1414
1515
#![stable(feature = "rust1", since = "1.0.0")]
1616

src/libcore/num/i64.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
//! The 64-bit signed integer type.
1212
//!
13-
//! *[See also the `i64` primitive type](../primitive.i64.html).*
13+
//! *[See also the `i64` primitive type](../../std/primitive.i64.html).*
1414
1515
#![stable(feature = "rust1", since = "1.0.0")]
1616

src/libcore/num/i8.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
//! The 8-bit signed integer type.
1212
//!
13-
//! *[See also the `i8` primitive type](../primitive.i8.html).*
13+
//! *[See also the `i8` primitive type](../../std/primitive.i8.html).*
1414
1515
#![stable(feature = "rust1", since = "1.0.0")]
1616

src/libcore/num/isize.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
//! The pointer-sized signed integer type.
1212
//!
13-
//! *[See also the `isize` primitive type](../primitive.isize.html).*
13+
//! *[See also the `isize` primitive type](../../std/primitive.isize.html).*
1414
1515
#![stable(feature = "rust1", since = "1.0.0")]
1616

src/libcore/num/u16.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
//! The 16-bit unsigned integer type.
1212
//!
13-
//! *[See also the `u16` primitive type](../primitive.u16.html).*
13+
//! *[See also the `u16` primitive type](../../std/primitive.u16.html).*
1414
1515
#![stable(feature = "rust1", since = "1.0.0")]
1616

src/libcore/num/u32.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
//! The 32-bit unsigned integer type.
1212
//!
13-
//! *[See also the `u32` primitive type](../primitive.u32.html).*
13+
//! *[See also the `u32` primitive type](../../std/primitive.u32.html).*
1414
1515
#![stable(feature = "rust1", since = "1.0.0")]
1616

src/libcore/num/u64.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
//! The 64-bit unsigned integer type.
1212
//!
13-
//! *[See also the `u64` primitive type](../primitive.u64.html).*
13+
//! *[See also the `u64` primitive type](../../std/primitive.u64.html).*
1414
1515
#![stable(feature = "rust1", since = "1.0.0")]
1616

src/libcore/num/u8.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
//! The 8-bit unsigned integer type.
1212
//!
13-
//! *[See also the `u8` primitive type](../primitive.u8.html).*
13+
//! *[See also the `u8` primitive type](../../std/primitive.u8.html).*
1414
1515
#![stable(feature = "rust1", since = "1.0.0")]
1616

src/libcore/num/usize.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
//! The pointer-sized unsigned integer type.
1212
//!
13-
//! *[See also the `usize` primitive type](../primitive.usize.html).*
13+
//! *[See also the `usize` primitive type](../../std/primitive.usize.html).*
1414
1515
#![stable(feature = "rust1", since = "1.0.0")]
1616

src/libcore/ptr.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
//! Raw, unsafe pointers, `*const T`, and `*mut T`
1414
//!
15-
//! *[See also the pointer primitive types](../primitive.pointer.html).*
15+
//! *[See also the pointer primitive types](../../std/primitive.pointer.html).*
1616
1717
#![stable(feature = "rust1", since = "1.0.0")]
1818

0 commit comments

Comments
 (0)