diff options
| author | bors <bors@rust-lang.org> | 2017-05-20 15:42:43 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2017-05-20 15:42:43 +0000 |
| commit | 272e77f035d8cca43f228764c2028c09eeaca20e (patch) | |
| tree | 932ee7567e61ac15d0baf67711de254894b56481 /src/liballoc | |
| parent | a0da1e0653e7a927dbf80f979306a7f31bc595b8 (diff) | |
| parent | 2f703e4304c1c9b15c616b7a08bac581af5ab430 (diff) | |
| download | rust-272e77f035d8cca43f228764c2028c09eeaca20e.tar.gz rust-272e77f035d8cca43f228764c2028c09eeaca20e.zip | |
Auto merge of #42111 - ollie27:stab, r=Mark-Simulacrum
Correct some stability versions These were found by running tidy on stable versions of rust and finding features stabilised with the wrong version numbers.
Diffstat (limited to 'src/liballoc')
| -rw-r--r-- | src/liballoc/boxed.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/liballoc/boxed.rs b/src/liballoc/boxed.rs index fc6929f896e..8a39be8fae8 100644 --- a/src/liballoc/boxed.rs +++ b/src/liballoc/boxed.rs @@ -445,7 +445,7 @@ impl<'a> From<&'a str> for Box<str> { } } -#[stable(feature = "boxed_str_conv", since = "1.18.0")] +#[stable(feature = "boxed_str_conv", since = "1.19.0")] impl From<Box<str>> for Box<[u8]> { fn from(s: Box<str>) -> Self { unsafe { |
