Fix stability attributes of byte-to-string specialization

This commit is contained in:
LingMan 2021-05-03 13:00:34 +02:00 committed by GitHub
parent e327a823d8
commit eb9f168e1e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -2288,7 +2288,7 @@ impl ToString for char {
} }
} }
#[stable(feature = "u8_to_string_specialization", since = "1.999.0")] #[stable(feature = "u8_to_string_specialization", since = "1.54.0")]
impl ToString for u8 { impl ToString for u8 {
#[inline] #[inline]
fn to_string(&self) -> String { fn to_string(&self) -> String {
@ -2307,7 +2307,7 @@ impl ToString for u8 {
} }
} }
#[stable(feature = "i8_to_string_specialization", since = "1.999.0")] #[stable(feature = "i8_to_string_specialization", since = "1.54.0")]
impl ToString for i8 { impl ToString for i8 {
#[inline] #[inline]
fn to_string(&self) -> String { fn to_string(&self) -> String {