diff options
| author | kennytm <kennytm@gmail.com> | 2018-03-28 03:03:39 +0800 |
|---|---|---|
| committer | kennytm <kennytm@gmail.com> | 2018-03-28 03:03:39 +0800 |
| commit | 605ea7c31f7341995c2d1ae12b4b33fe6bd908b5 (patch) | |
| tree | 19b13ac2494f1e1b347ee8aae9c48150677434f3 /src/libstd/error.rs | |
| parent | 19fe9d1181bb15f76cdf2b5335edff5a82c5152b (diff) | |
| parent | f513fbdf36ad0708fb222b8d55bc086dd4be18cf (diff) | |
| download | rust-605ea7c31f7341995c2d1ae12b4b33fe6bd908b5.tar.gz rust-605ea7c31f7341995c2d1ae12b4b33fe6bd908b5.zip | |
Rollup merge of #49426 - lukaslueg:patch-1, r=kennytm
Update CONTRIBUTING.md The current link is a 404, just link to the main repo page
Diffstat (limited to 'src/libstd/error.rs')
| -rw-r--r-- | src/libstd/error.rs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/libstd/error.rs b/src/libstd/error.rs index 79bb6af168f..3d0c96585b5 100644 --- a/src/libstd/error.rs +++ b/src/libstd/error.rs @@ -275,14 +275,14 @@ impl Error for num::ParseIntError { } } -#[unstable(feature = "try_from", issue = "33417")] +#[stable(feature = "try_from", since = "1.26.0")] impl Error for num::TryFromIntError { fn description(&self) -> &str { self.__description() } } -#[unstable(feature = "try_from", issue = "33417")] +#[stable(feature = "try_from", since = "1.26.0")] impl Error for array::TryFromSliceError { fn description(&self) -> &str { self.__description() @@ -356,7 +356,7 @@ impl Error for cell::BorrowMutError { } } -#[unstable(feature = "try_from", issue = "33417")] +#[stable(feature = "try_from", since = "1.26.0")] impl Error for char::CharTryFromError { fn description(&self) -> &str { "converted integer out of range for `char`" |
