File tree 1 file changed +4
-4
lines changed
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -761,6 +761,8 @@ impl OsStr {
761
761
///
762
762
/// To lowercase the value in-place, use [`make_ascii_lowercase`].
763
763
///
764
+ /// [`make_ascii_lowercase`]: #method.make_ascii_lowercase
765
+ ///
764
766
/// # Examples
765
767
///
766
768
/// ```
@@ -770,8 +772,6 @@ impl OsStr {
770
772
///
771
773
/// assert_eq!("grüße, jürgen ❤", s.to_ascii_lowercase());
772
774
/// ```
773
- ///
774
- /// [`make_ascii_lowercase`]: #method.make_ascii_lowercase
775
775
#[ unstable( feature = "osstring_ascii" , issue = "none" ) ]
776
776
pub fn to_ascii_lowercase ( & self ) -> OsString {
777
777
OsString :: from_inner ( self . inner . to_ascii_lowercase ( ) )
@@ -785,6 +785,8 @@ impl OsStr {
785
785
///
786
786
/// To uppercase the value in-place, use [`make_ascii_uppercase`].
787
787
///
788
+ /// [`make_ascii_uppercase`]: #method.make_ascii_uppercase
789
+ ///
788
790
/// # Examples
789
791
///
790
792
/// ```
@@ -794,8 +796,6 @@ impl OsStr {
794
796
///
795
797
/// assert_eq!("GRüßE, JüRGEN ❤", s.to_ascii_uppercase());
796
798
/// ```
797
- ///
798
- /// [`make_ascii_uppercase`]: #method.make_ascii_uppercase
799
799
#[ unstable( feature = "osstring_ascii" , issue = "none" ) ]
800
800
pub fn to_ascii_uppercase ( & self ) -> OsString {
801
801
OsString :: from_inner ( self . inner . to_ascii_uppercase ( ) )
You can’t perform that action at this time.
0 commit comments