about summary refs log tree commit diff
path: root/src/liballoc/slice.rs
diff options
context:
space:
mode:
authorSebastian Dröge <sebastian@centricular.com>2018-10-18 18:48:02 +0300
committerSebastian Dröge <sebastian@centricular.com>2018-10-18 18:51:56 +0300
commit52cc6fde4b73a3013ce2185052f9492ae3728367 (patch)
tree6b50bb0a8a0fc590b6f61b48268730cf9efe047b /src/liballoc/slice.rs
parentb08ca2958e1b92c67c3ac0e76455f51742b95d23 (diff)
downloadrust-52cc6fde4b73a3013ce2185052f9492ae3728367.tar.gz
rust-52cc6fde4b73a3013ce2185052f9492ae3728367.zip
Stabilize slice::rchunks(), rchunks_mut(), rchunks_exact(), rchunk_exact_mut()
Fixes #55177
Diffstat (limited to 'src/liballoc/slice.rs')
-rw-r--r--src/liballoc/slice.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/liballoc/slice.rs b/src/liballoc/slice.rs
index 8ffc043d816..1eaff7410ea 100644
--- a/src/liballoc/slice.rs
+++ b/src/liballoc/slice.rs
@@ -125,7 +125,7 @@ pub use core::slice::{from_ref, from_mut};
 pub use core::slice::SliceIndex;
 #[stable(feature = "chunks_exact", since = "1.31.0")]
 pub use core::slice::{ChunksExact, ChunksExactMut};
-#[unstable(feature = "rchunks", issue = "55177")]
+#[stable(feature = "rchunks", since = "1.31.0")]
 pub use core::slice::{RChunks, RChunksMut, RChunksExact, RChunksExactMut};
 
 ////////////////////////////////////////////////////////////////////////////////