about summary refs log tree commit diff
path: root/library/core/src/array
diff options
context:
space:
mode:
authorLinda_pp <rhysd@users.noreply.github.com>2021-11-20 23:35:28 +0900
committerGitHub <noreply@github.com>2021-11-20 23:35:28 +0900
commit66e0523d09b01616e85565b35f97c99cc0bb2136 (patch)
treedb29f55a63c29f5df605ae7814b0f5071ae7ba8a /library/core/src/array
parent72b411fd89675a38613d347b31481cd8e8a59bb7 (diff)
downloadrust-66e0523d09b01616e85565b35f97c99cc0bb2136.tar.gz
rust-66e0523d09b01616e85565b35f97c99cc0bb2136.zip
Update version in `stable` attribute
Co-authored-by: Joshua Nelson <github@jyn.dev>
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 eadf6fd9a4f..700fa7f4e2d 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.57.0")]
+#[stable(feature = "try_from_mut_slice_to_array", since = "1.58.0")]
 impl<T, const N: usize> TryFrom<&mut [T]> for [T; N]
 where
     T: Copy,