]> git.lizzy.rs Git - rust.git/commitdiff
add tracking issue
authorTyPR124 <t.ruckinger@gmail.com>
Sat, 28 Mar 2020 23:23:49 +0000 (19:23 -0400)
committerTyPR124 <t.ruckinger@gmail.com>
Sat, 28 Mar 2020 23:23:49 +0000 (19:23 -0400)
src/libstd/ffi/os_str.rs

index d66d471a29e4b1c55fe6687a5afb613fd3de1651..5e686946f8e9a609bbda671c303e45d5b0af8ed2 100644 (file)
@@ -721,7 +721,7 @@ fn bytes(&self) -> &[u8] {
     ///
     /// assert_eq!("grÜße, jÜrgen ❤", s);
     /// ```
-    #[unstable(feature = "osstring_ascii", issue = "none")]
+    #[unstable(feature = "osstring_ascii", issue = "70516")]
     pub fn make_ascii_lowercase(&mut self) {
         self.inner.make_ascii_lowercase()
     }
@@ -748,7 +748,7 @@ pub fn make_ascii_lowercase(&mut self) {
     ///
     /// assert_eq!("GRüßE, JüRGEN ❤", s);
     /// ```
-    #[unstable(feature = "osstring_ascii", issue = "none")]
+    #[unstable(feature = "osstring_ascii", issue = "70516")]
     pub fn make_ascii_uppercase(&mut self) {
         self.inner.make_ascii_uppercase()
     }
@@ -772,7 +772,7 @@ pub fn make_ascii_uppercase(&mut self) {
     ///
     /// assert_eq!("grüße, jürgen ❤", s.to_ascii_lowercase());
     /// ```
-    #[unstable(feature = "osstring_ascii", issue = "none")]
+    #[unstable(feature = "osstring_ascii", issue = "70516")]
     pub fn to_ascii_lowercase(&self) -> OsString {
         OsString::from_inner(self.inner.to_ascii_lowercase())
     }
@@ -796,7 +796,7 @@ pub fn to_ascii_lowercase(&self) -> OsString {
     ///
     /// assert_eq!("GRüßE, JüRGEN ❤", s.to_ascii_uppercase());
     /// ```
-    #[unstable(feature = "osstring_ascii", issue = "none")]
+    #[unstable(feature = "osstring_ascii", issue = "70516")]
     pub fn to_ascii_uppercase(&self) -> OsString {
         OsString::from_inner(self.inner.to_ascii_uppercase())
     }
@@ -815,7 +815,7 @@ pub fn to_ascii_uppercase(&self) -> OsString {
     /// assert!(ascii.is_ascii());
     /// assert!(!non_ascii.is_ascii());
     /// ```
-    #[unstable(feature = "osstring_ascii", issue = "none")]
+    #[unstable(feature = "osstring_ascii", issue = "70516")]
     pub fn is_ascii(&self) -> bool {
         self.inner.is_ascii()
     }
@@ -835,7 +835,7 @@ pub fn is_ascii(&self) -> bool {
     /// assert!(OsString::from("Ferrös").eq_ignore_ascii_case("FERRöS"));
     /// assert!(!OsString::from("Ferrös").eq_ignore_ascii_case("FERRÖS"));
     /// ```
-    #[unstable(feature = "osstring_ascii", issue = "none")]
+    #[unstable(feature = "osstring_ascii", issue = "70516")]
     pub fn eq_ignore_ascii_case<S: ?Sized + AsRef<OsStr>>(&self, other: &S) -> bool {
         self.inner.eq_ignore_ascii_case(&other.as_ref().inner)
     }