@@ -721,7 +721,7 @@ impl OsStr {
721
721
///
722
722
/// assert_eq!("grÜße, jÜrgen ❤", s);
723
723
/// ```
724
- #[ unstable( feature = "osstring_ascii" , issue = "none " ) ]
724
+ #[ unstable( feature = "osstring_ascii" , issue = "70516 " ) ]
725
725
pub fn make_ascii_lowercase ( & mut self ) {
726
726
self . inner . make_ascii_lowercase ( )
727
727
}
@@ -748,7 +748,7 @@ impl OsStr {
748
748
///
749
749
/// assert_eq!("GRüßE, JüRGEN ❤", s);
750
750
/// ```
751
- #[ unstable( feature = "osstring_ascii" , issue = "none " ) ]
751
+ #[ unstable( feature = "osstring_ascii" , issue = "70516 " ) ]
752
752
pub fn make_ascii_uppercase ( & mut self ) {
753
753
self . inner . make_ascii_uppercase ( )
754
754
}
@@ -772,7 +772,7 @@ impl OsStr {
772
772
///
773
773
/// assert_eq!("grüße, jürgen ❤", s.to_ascii_lowercase());
774
774
/// ```
775
- #[ unstable( feature = "osstring_ascii" , issue = "none " ) ]
775
+ #[ unstable( feature = "osstring_ascii" , issue = "70516 " ) ]
776
776
pub fn to_ascii_lowercase ( & self ) -> OsString {
777
777
OsString :: from_inner ( self . inner . to_ascii_lowercase ( ) )
778
778
}
@@ -796,7 +796,7 @@ impl OsStr {
796
796
///
797
797
/// assert_eq!("GRüßE, JüRGEN ❤", s.to_ascii_uppercase());
798
798
/// ```
799
- #[ unstable( feature = "osstring_ascii" , issue = "none " ) ]
799
+ #[ unstable( feature = "osstring_ascii" , issue = "70516 " ) ]
800
800
pub fn to_ascii_uppercase ( & self ) -> OsString {
801
801
OsString :: from_inner ( self . inner . to_ascii_uppercase ( ) )
802
802
}
@@ -815,7 +815,7 @@ impl OsStr {
815
815
/// assert!(ascii.is_ascii());
816
816
/// assert!(!non_ascii.is_ascii());
817
817
/// ```
818
- #[ unstable( feature = "osstring_ascii" , issue = "none " ) ]
818
+ #[ unstable( feature = "osstring_ascii" , issue = "70516 " ) ]
819
819
pub fn is_ascii ( & self ) -> bool {
820
820
self . inner . is_ascii ( )
821
821
}
@@ -835,7 +835,7 @@ impl OsStr {
835
835
/// assert!(OsString::from("Ferrös").eq_ignore_ascii_case("FERRöS"));
836
836
/// assert!(!OsString::from("Ferrös").eq_ignore_ascii_case("FERRÖS"));
837
837
/// ```
838
- #[ unstable( feature = "osstring_ascii" , issue = "none " ) ]
838
+ #[ unstable( feature = "osstring_ascii" , issue = "70516 " ) ]
839
839
pub fn eq_ignore_ascii_case < S : ?Sized + AsRef < OsStr > > ( & self , other : & S ) -> bool {
840
840
self . inner . eq_ignore_ascii_case ( & other. as_ref ( ) . inner )
841
841
}
0 commit comments