diff options
| author | Oliver Middleton <olliemail27@gmail.com> | 2017-05-20 08:38:39 +0100 |
|---|---|---|
| committer | Oliver Middleton <olliemail27@gmail.com> | 2017-05-20 08:38:39 +0100 |
| commit | 2f703e4304c1c9b15c616b7a08bac581af5ab430 (patch) | |
| tree | 6eea2177e7026700814b0e820655ec77fb37ca8d /src/liballoc | |
| parent | 9f15631c36665911eb8e6f594ebcfe93e65a461c (diff) | |
| download | rust-2f703e4304c1c9b15c616b7a08bac581af5ab430.tar.gz rust-2f703e4304c1c9b15c616b7a08bac581af5ab430.zip | |
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 { |
