diff options
| author | Oliver Middleton <olliemail27@gmail.com> | 2017-04-18 23:33:38 +0100 |
|---|---|---|
| committer | Oliver Middleton <olliemail27@gmail.com> | 2017-04-18 23:33:38 +0100 |
| commit | fd325a1b485b1698f86e791a5586cda79e64fdbd (patch) | |
| tree | f0e70c6c9bf1d96ed3288f4d2a4e28acd9ef9d3b /src/libstd | |
| parent | c398efc53f09f6e1a8cba4ec2259ffb9d89f0542 (diff) | |
| download | rust-fd325a1b485b1698f86e791a5586cda79e64fdbd.tar.gz rust-fd325a1b485b1698f86e791a5586cda79e64fdbd.zip | |
Fix a few stability attributes
These show up in rustdoc so need to be correct.
Diffstat (limited to 'src/libstd')
| -rw-r--r-- | src/libstd/error.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstd/error.rs b/src/libstd/error.rs index 3d80120f6b2..9ff7d746733 100644 --- a/src/libstd/error.rs +++ b/src/libstd/error.rs @@ -216,7 +216,7 @@ impl<'a> From<&'a str> for Box<Error> { } } -#[stable(feature = "never_error", since = "1.18.0")] +#[unstable(feature = "never_type_impls", issue = "35121")] impl Error for ! { fn description(&self) -> &str { *self } } |
