diff options
| author | TyPR124 <t.ruckinger@gmail.com> | 2020-03-28 19:23:49 -0400 |
|---|---|---|
| committer | TyPR124 <t.ruckinger@gmail.com> | 2020-03-28 19:23:49 -0400 |
| commit | 271d43b158f71422df2239764d4d54734d4ebcfb (patch) | |
| tree | 972391f6a2818e541372c89314219976255b0ef6 /src/libstd/ffi | |
| parent | ca4b40348e57c20d034b18395d9be25215e68643 (diff) | |
| download | rust-271d43b158f71422df2239764d4d54734d4ebcfb.tar.gz rust-271d43b158f71422df2239764d4d54734d4ebcfb.zip | |
add tracking issue
Diffstat (limited to 'src/libstd/ffi')
| -rw-r--r-- | src/libstd/ffi/os_str.rs | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/libstd/ffi/os_str.rs b/src/libstd/ffi/os_str.rs index d66d471a29e..5e686946f8e 100644 --- a/src/libstd/ffi/os_str.rs +++ b/src/libstd/ffi/os_str.rs @@ -721,7 +721,7 @@ impl OsStr { /// /// 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 @@ impl OsStr { /// /// 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 @@ impl OsStr { /// /// 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 @@ impl OsStr { /// /// 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 @@ impl OsStr { /// 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 @@ impl OsStr { /// 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) } |
