about summary refs log tree commit diff
path: root/library/core/src/array
diff options
context:
space:
mode:
authorMara Bos <m-ou.se@m-ou.se>2021-12-04 17:17:12 +0100
committerGitHub <noreply@github.com>2021-12-04 17:17:12 +0100
commit16711fe0768d9df5daf73a2025913984ea17f8eb (patch)
tree921ce0b89e04e269267135fee64d9afc5ddbb7c2 /library/core/src/array
parentac083c6b45bd3fbe0dc24ab57e2dd9d55f14d472 (diff)
downloadrust-16711fe0768d9df5daf73a2025913984ea17f8eb.tar.gz
rust-16711fe0768d9df5daf73a2025913984ea17f8eb.zip
Update stabilization version of try_from_mut_slice_to_array
Diffstat (limited to 'library/core/src/array')
-rw-r--r--library/core/src/array/mod.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/library/core/src/array/mod.rs b/library/core/src/array/mod.rs
index 181f8b408e6..33f0f46a0a1 100644
--- a/library/core/src/array/mod.rs
+++ b/library/core/src/array/mod.rs
@@ -176,7 +176,7 @@ where
     }
 }
 
-#[stable(feature = "try_from_mut_slice_to_array", since = "1.58.0")]
+#[stable(feature = "try_from_mut_slice_to_array", since = "1.59.0")]
 impl<T, const N: usize> TryFrom<&mut [T]> for [T; N]
 where
     T: Copy,