about summary refs log tree commit diff
diff options
context:
space:
mode:
authorAshley Mannix <kodraus@hey.com>2020-12-21 18:40:34 +1000
committerGitHub <noreply@github.com>2020-12-21 18:40:34 +1000
commitbbf5001b9428bbf5b4ac93f42dc7017b27c9002f (patch)
tree1c5b606b9a3ced73ccefaa336b559092738619ad
parent573ec314b635178533f68160f2dab3dd345d5df2 (diff)
downloadrust-bbf5001b9428bbf5b4ac93f42dc7017b27c9002f.tar.gz
rust-bbf5001b9428bbf5b4ac93f42dc7017b27c9002f.zip
bump stabilization to 1.51.0
-rw-r--r--library/std/src/error.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/library/std/src/error.rs b/library/std/src/error.rs
index 8fd9f09b9de..4ff60709b20 100644
--- a/library/std/src/error.rs
+++ b/library/std/src/error.rs
@@ -506,7 +506,7 @@ impl<T: Error> Error for Box<T> {
     }
 }
 
-#[stable(feature = "error_by_ref", since = "1.49.0")]
+#[stable(feature = "error_by_ref", since = "1.51.0")]
 impl<'a, T: Error + ?Sized> Error for &'a T {
     #[allow(deprecated, deprecated_in_future)]
     fn description(&self) -> &str {