@@ -389,7 +389,7 @@ mod prim_unit {}
389
389
//
390
390
/// Raw, unsafe pointers, `*const T`, and `*mut T`.
391
391
///
392
- /// *[See also the `std::ptr` module][` ptr`] .*
392
+ /// *[See also the `std::ptr` module]( ptr) .*
393
393
///
394
394
/// Working with raw pointers in Rust is uncommon, typically limited to a few patterns.
395
395
/// Raw pointers can be unaligned or [`null`]. However, when a raw pointer is
@@ -580,7 +580,7 @@ mod prim_array {}
580
580
/// means that elements are laid out so that every element is the same
581
581
/// distance from its neighbors.
582
582
///
583
- /// *[See also the `std::slice` module][` crate::slice`] .*
583
+ /// *[See also the `std::slice` module]( crate::slice) .*
584
584
///
585
585
/// Slices are a view into a block of memory represented as a pointer and a
586
586
/// length.
@@ -625,7 +625,7 @@ mod prim_slice {}
625
625
//
626
626
/// String slices.
627
627
///
628
- /// *[See also the `std::str` module][` crate::str`] .*
628
+ /// *[See also the `std::str` module]( crate::str) .*
629
629
///
630
630
/// The `str` type, also called a 'string slice', is the most primitive string
631
631
/// type. It is usually seen in its borrowed form, `&str`. It is also the type
@@ -820,7 +820,7 @@ mod prim_tuple {}
820
820
///
821
821
/// For more information on floating point numbers, see [Wikipedia][wikipedia].
822
822
///
823
- /// *[See also the `std::f32::consts` module][` crate::f32::consts`] .*
823
+ /// *[See also the `std::f32::consts` module]( crate::f32::consts) .*
824
824
///
825
825
/// [wikipedia]: https://en.wikipedia.org/wiki/Single-precision_floating-point_format
826
826
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
@@ -834,7 +834,7 @@ mod prim_f32 {}
834
834
/// `f32`][`f32`] or [Wikipedia on double precision
835
835
/// values][wikipedia] for more information.
836
836
///
837
- /// *[See also the `std::f64::consts` module][` crate::f64::consts`] .*
837
+ /// *[See also the `std::f64::consts` module]( crate::f64::consts) .*
838
838
///
839
839
/// [`f32`]: prim@f32
840
840
/// [wikipedia]: https://en.wikipedia.org/wiki/Double-precision_floating-point_format
0 commit comments