about summary refs log tree commit diff
path: root/src/libcore/array.rs
diff options
context:
space:
mode:
authorkennytm <kennytm@gmail.com>2018-03-28 03:03:39 +0800
committerkennytm <kennytm@gmail.com>2018-03-28 03:03:39 +0800
commit605ea7c31f7341995c2d1ae12b4b33fe6bd908b5 (patch)
tree19b13ac2494f1e1b347ee8aae9c48150677434f3 /src/libcore/array.rs
parent19fe9d1181bb15f76cdf2b5335edff5a82c5152b (diff)
parentf513fbdf36ad0708fb222b8d55bc086dd4be18cf (diff)
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/libcore/array.rs')
-rw-r--r--src/libcore/array.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/libcore/array.rs b/src/libcore/array.rs
index 3d24f8902bd..87144c27c9e 100644
--- a/src/libcore/array.rs
+++ b/src/libcore/array.rs
@@ -59,7 +59,7 @@ unsafe impl<T, A: Unsize<[T]>> FixedSizeArray<T> for A {
 }
 
 /// The error type returned when a conversion from a slice to an array fails.
-#[unstable(feature = "try_from", issue = "33417")]
+#[stable(feature = "try_from", since = "1.26.0")]
 #[derive(Debug, Copy, Clone)]
 pub struct TryFromSliceError(());
 
@@ -148,7 +148,7 @@ macro_rules! array_impls {
                 }
             }
 
-            #[unstable(feature = "try_from", issue = "33417")]
+            #[stable(feature = "try_from", since = "1.26.0")]
             impl<'a, T> TryFrom<&'a [T]> for &'a [T; $N] {
                 type Error = TryFromSliceError;
 
@@ -162,7 +162,7 @@ macro_rules! array_impls {
                 }
             }
 
-            #[unstable(feature = "try_from", issue = "33417")]
+            #[stable(feature = "try_from", since = "1.26.0")]
             impl<'a, T> TryFrom<&'a mut [T]> for &'a mut [T; $N] {
                 type Error = TryFromSliceError;