about summary refs log tree commit diff
path: root/src/libstd/error.rs
diff options
context:
space:
mode:
authorOliver Middleton <olliemail27@gmail.com>2017-04-18 23:33:38 +0100
committerOliver Middleton <olliemail27@gmail.com>2017-04-18 23:33:38 +0100
commitfd325a1b485b1698f86e791a5586cda79e64fdbd (patch)
treef0e70c6c9bf1d96ed3288f4d2a4e28acd9ef9d3b /src/libstd/error.rs
parentc398efc53f09f6e1a8cba4ec2259ffb9d89f0542 (diff)
downloadrust-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/error.rs')
-rw-r--r--src/libstd/error.rs2
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 }
 }