File tree 3 files changed +4
-2
lines changed
3 files changed +4
-2
lines changed Original file line number Diff line number Diff line change 97
97
#![ allow( incomplete_features) ]
98
98
#![ warn( multiple_supertrait_upcastable) ]
99
99
#![ cfg_attr( not( bootstrap) , allow( internal_features) ) ]
100
+ // Do not check link redundancy on bootstraping phase
101
+ #![ cfg_attr( not( bootstrap) , allow( rustdoc:: redundant_explicit_links) ) ]
100
102
//
101
103
// Library features:
102
104
// tidy-alphabetical-start
Original file line number Diff line number Diff line change @@ -624,7 +624,7 @@ mod prim_pointer {}
624
624
/// array implementations) succeed if the input slice length is the same as the result
625
625
/// array length. They optimize especially well when the optimizer can easily determine
626
626
/// the slice length, e.g. `<[u8; 4]>::try_from(&slice[4..8]).unwrap()`. Array implements
627
- /// [TryFrom] returning:
627
+ /// [TryFrom](crate::convert::TryFrom) returning:
628
628
///
629
629
/// - `[T; N]` copies from the slice's elements
630
630
/// - `&[T; N]` references the original slice's elements
Original file line number Diff line number Diff line change @@ -624,7 +624,7 @@ mod prim_pointer {}
624
624
/// array implementations) succeed if the input slice length is the same as the result
625
625
/// array length. They optimize especially well when the optimizer can easily determine
626
626
/// the slice length, e.g. `<[u8; 4]>::try_from(&slice[4..8]).unwrap()`. Array implements
627
- /// [TryFrom] returning:
627
+ /// [TryFrom](crate::convert::TryFrom) returning:
628
628
///
629
629
/// - `[T; N]` copies from the slice's elements
630
630
/// - `&[T; N]` references the original slice's elements
You can’t perform that action at this time.
0 commit comments