about summary refs log tree commit diff
path: root/src/libstd/error.rs
diff options
context:
space:
mode:
authorOliver Middleton <olliemail27@gmail.com>2017-07-10 02:07:29 +0100
committerOliver Middleton <olliemail27@gmail.com>2017-07-10 02:07:29 +0100
commitf2566bbaebc4ea56bc3717ee8c04bee7d5c0a8d3 (patch)
tree1afefb5f9b70971fff0572eb24c52682ff8a480d /src/libstd/error.rs
parent55ad73b0266bef8dfb3ee6f9d7d6b3cf5d119e77 (diff)
downloadrust-f2566bbaebc4ea56bc3717ee8c04bee7d5c0a8d3.tar.gz
rust-f2566bbaebc4ea56bc3717ee8c04bee7d5c0a8d3.zip
Correct some 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 d77f817659c..d1c2bfb96b3 100644
--- a/src/libstd/error.rs
+++ b/src/libstd/error.rs
@@ -340,7 +340,7 @@ impl Error for char::CharTryFromError {
     }
 }
 
-#[stable(feature = "char_from_str", since = "1.19.0")]
+#[stable(feature = "char_from_str", since = "1.20.0")]
 impl Error for char::ParseCharError {
     fn description(&self) -> &str {
         self.__description()