@@ -721,7 +721,7 @@ impl OsStr {
721721 ///
722722 /// assert_eq!("grÜße, jÜrgen ❤", s);
723723 /// ```
724- #[ unstable( feature = "osstring_ascii" , issue = "none " ) ]
724+ #[ unstable( feature = "osstring_ascii" , issue = "70516 " ) ]
725725 pub fn make_ascii_lowercase ( & mut self ) {
726726 self . inner . make_ascii_lowercase ( )
727727 }
@@ -748,7 +748,7 @@ impl OsStr {
748748 ///
749749 /// assert_eq!("GRüßE, JüRGEN ❤", s);
750750 /// ```
751- #[ unstable( feature = "osstring_ascii" , issue = "none " ) ]
751+ #[ unstable( feature = "osstring_ascii" , issue = "70516 " ) ]
752752 pub fn make_ascii_uppercase ( & mut self ) {
753753 self . inner . make_ascii_uppercase ( )
754754 }
@@ -772,7 +772,7 @@ impl OsStr {
772772 ///
773773 /// assert_eq!("grüße, jürgen ❤", s.to_ascii_lowercase());
774774 /// ```
775- #[ unstable( feature = "osstring_ascii" , issue = "none " ) ]
775+ #[ unstable( feature = "osstring_ascii" , issue = "70516 " ) ]
776776 pub fn to_ascii_lowercase ( & self ) -> OsString {
777777 OsString :: from_inner ( self . inner . to_ascii_lowercase ( ) )
778778 }
@@ -796,7 +796,7 @@ impl OsStr {
796796 ///
797797 /// assert_eq!("GRüßE, JüRGEN ❤", s.to_ascii_uppercase());
798798 /// ```
799- #[ unstable( feature = "osstring_ascii" , issue = "none " ) ]
799+ #[ unstable( feature = "osstring_ascii" , issue = "70516 " ) ]
800800 pub fn to_ascii_uppercase ( & self ) -> OsString {
801801 OsString :: from_inner ( self . inner . to_ascii_uppercase ( ) )
802802 }
@@ -815,7 +815,7 @@ impl OsStr {
815815 /// assert!(ascii.is_ascii());
816816 /// assert!(!non_ascii.is_ascii());
817817 /// ```
818- #[ unstable( feature = "osstring_ascii" , issue = "none " ) ]
818+ #[ unstable( feature = "osstring_ascii" , issue = "70516 " ) ]
819819 pub fn is_ascii ( & self ) -> bool {
820820 self . inner . is_ascii ( )
821821 }
@@ -835,7 +835,7 @@ impl OsStr {
835835 /// assert!(OsString::from("Ferrös").eq_ignore_ascii_case("FERRöS"));
836836 /// assert!(!OsString::from("Ferrös").eq_ignore_ascii_case("FERRÖS"));
837837 /// ```
838- #[ unstable( feature = "osstring_ascii" , issue = "none " ) ]
838+ #[ unstable( feature = "osstring_ascii" , issue = "70516 " ) ]
839839 pub fn eq_ignore_ascii_case < S : ?Sized + AsRef < OsStr > > ( & self , other : & S ) -> bool {
840840 self . inner . eq_ignore_ascii_case ( & other. as_ref ( ) . inner )
841841 }
0 commit comments