about summary refs log tree commit diff
path: root/src/liballoc
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2017-05-20 15:42:43 +0000
committerbors <bors@rust-lang.org>2017-05-20 15:42:43 +0000
commit272e77f035d8cca43f228764c2028c09eeaca20e (patch)
tree932ee7567e61ac15d0baf67711de254894b56481 /src/liballoc
parenta0da1e0653e7a927dbf80f979306a7f31bc595b8 (diff)
parent2f703e4304c1c9b15c616b7a08bac581af5ab430 (diff)
downloadrust-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.rs2
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 {