File tree 2 files changed +4
-4
lines changed
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -642,7 +642,7 @@ impl [u8] {
642
642
///
643
643
/// To uppercase the value in-place, use [`make_ascii_uppercase`].
644
644
///
645
- /// [`make_ascii_uppercase`]: #method. make_ascii_uppercase
645
+ /// [`make_ascii_uppercase`]: slice:: make_ascii_uppercase
646
646
#[ stable( feature = "ascii_methods_on_intrinsics" , since = "1.23.0" ) ]
647
647
#[ inline]
648
648
pub fn to_ascii_uppercase ( & self ) -> Vec < u8 > {
@@ -659,7 +659,7 @@ impl [u8] {
659
659
///
660
660
/// To lowercase the value in-place, use [`make_ascii_lowercase`].
661
661
///
662
- /// [`make_ascii_lowercase`]: #method. make_ascii_lowercase
662
+ /// [`make_ascii_lowercase`]: slice:: make_ascii_lowercase
663
663
#[ stable( feature = "ascii_methods_on_intrinsics" , since = "1.23.0" ) ]
664
664
#[ inline]
665
665
pub fn to_ascii_lowercase ( & self ) -> Vec < u8 > {
Original file line number Diff line number Diff line change @@ -30,7 +30,7 @@ impl [u8] {
30
30
/// To return a new uppercased value without modifying the existing one, use
31
31
/// [`to_ascii_uppercase`].
32
32
///
33
- /// [`to_ascii_uppercase`]: #method. to_ascii_uppercase
33
+ /// [`to_ascii_uppercase`]: slice:: to_ascii_uppercase
34
34
#[ stable( feature = "ascii_methods_on_intrinsics" , since = "1.23.0" ) ]
35
35
#[ inline]
36
36
pub fn make_ascii_uppercase ( & mut self ) {
@@ -47,7 +47,7 @@ impl [u8] {
47
47
/// To return a new lowercased value without modifying the existing one, use
48
48
/// [`to_ascii_lowercase`].
49
49
///
50
- /// [`to_ascii_lowercase`]: #method. to_ascii_lowercase
50
+ /// [`to_ascii_lowercase`]: slice:: to_ascii_lowercase
51
51
#[ stable( feature = "ascii_methods_on_intrinsics" , since = "1.23.0" ) ]
52
52
#[ inline]
53
53
pub fn make_ascii_lowercase ( & mut self ) {
You can’t perform that action at this time.
0 commit comments