Skip to content

Commit c127d8f

Browse files
committed
Don't mention interger modules on primitive docs
1 parent 8fbd3ad commit c127d8f

File tree

1 file changed

+0
-24
lines changed

1 file changed

+0
-24
lines changed

src/libstd/primitive_docs.rs

Lines changed: 0 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -788,89 +788,67 @@ mod prim_f64 {}
788788
#[doc(primitive = "i8")]
789789
//
790790
/// The 8-bit signed integer type.
791-
///
792-
/// *[See also the `std::i8` module](i8/index.html).*
793791
#[stable(feature = "rust1", since = "1.0.0")]
794792
mod prim_i8 {}
795793

796794
#[doc(primitive = "i16")]
797795
//
798796
/// The 16-bit signed integer type.
799-
///
800-
/// *[See also the `std::i16` module](i16/index.html).*
801797
#[stable(feature = "rust1", since = "1.0.0")]
802798
mod prim_i16 {}
803799

804800
#[doc(primitive = "i32")]
805801
//
806802
/// The 32-bit signed integer type.
807-
///
808-
/// *[See also the `std::i32` module](i32/index.html).*
809803
#[stable(feature = "rust1", since = "1.0.0")]
810804
mod prim_i32 {}
811805

812806
#[doc(primitive = "i64")]
813807
//
814808
/// The 64-bit signed integer type.
815-
///
816-
/// *[See also the `std::i64` module](i64/index.html).*
817809
#[stable(feature = "rust1", since = "1.0.0")]
818810
mod prim_i64 {}
819811

820812
#[doc(primitive = "i128")]
821813
//
822814
/// The 128-bit signed integer type.
823-
///
824-
/// *[See also the `std::i128` module](i128/index.html).*
825815
#[stable(feature = "i128", since = "1.26.0")]
826816
mod prim_i128 {}
827817

828818
#[doc(primitive = "u8")]
829819
//
830820
/// The 8-bit unsigned integer type.
831-
///
832-
/// *[See also the `std::u8` module](u8/index.html).*
833821
#[stable(feature = "rust1", since = "1.0.0")]
834822
mod prim_u8 {}
835823

836824
#[doc(primitive = "u16")]
837825
//
838826
/// The 16-bit unsigned integer type.
839-
///
840-
/// *[See also the `std::u16` module](u16/index.html).*
841827
#[stable(feature = "rust1", since = "1.0.0")]
842828
mod prim_u16 {}
843829

844830
#[doc(primitive = "u32")]
845831
//
846832
/// The 32-bit unsigned integer type.
847-
///
848-
/// *[See also the `std::u32` module](u32/index.html).*
849833
#[stable(feature = "rust1", since = "1.0.0")]
850834
mod prim_u32 {}
851835

852836
#[doc(primitive = "u64")]
853837
//
854838
/// The 64-bit unsigned integer type.
855-
///
856-
/// *[See also the `std::u64` module](u64/index.html).*
857839
#[stable(feature = "rust1", since = "1.0.0")]
858840
mod prim_u64 {}
859841

860842
#[doc(primitive = "u128")]
861843
//
862844
/// The 128-bit unsigned integer type.
863-
///
864-
/// *[See also the `std::u128` module](u128/index.html).*
865845
#[stable(feature = "i128", since = "1.26.0")]
866846
mod prim_u128 {}
867847

868848
#[doc(primitive = "isize")]
869849
//
870850
/// The pointer-sized signed integer type.
871851
///
872-
/// *[See also the `std::isize` module](isize/index.html).*
873-
///
874852
/// The size of this primitive is how many bytes it takes to reference any
875853
/// location in memory. For example, on a 32 bit target, this is 4 bytes
876854
/// and on a 64 bit target, this is 8 bytes.
@@ -881,8 +859,6 @@ mod prim_isize {}
881859
//
882860
/// The pointer-sized unsigned integer type.
883861
///
884-
/// *[See also the `std::usize` module](usize/index.html).*
885-
///
886862
/// The size of this primitive is how many bytes it takes to reference any
887863
/// location in memory. For example, on a 32 bit target, this is 4 bytes
888864
/// and on a 64 bit target, this is 8 bytes.

0 commit comments

Comments
 (0)