about summary refs log tree commit diff
path: root/src/libcore/slice.rs
diff options
context:
space:
mode:
authorAlex Crichton <alex@alexcrichton.com>2016-03-07 16:34:35 -0800
committerAlex Crichton <alex@alexcrichton.com>2016-03-11 22:09:58 -0800
commitaed7ddae8ea7f549dc2d493fda49dfa49de429b7 (patch)
tree444bbd633da071ed3d5564de194eda3add6ae074 /src/libcore/slice.rs
parenta38bf6e23d13bd479cf89b338f0862395d22fd07 (diff)
downloadrust-aed7ddae8ea7f549dc2d493fda49dfa49de429b7.tar.gz
rust-aed7ddae8ea7f549dc2d493fda49dfa49de429b7.zip
core: Make a new tracking issue for prelude traits
The referenced issues here were both closed, so hook up a new issue which tracks
specifically the prelude traits being unstable.
Diffstat (limited to 'src/libcore/slice.rs')
-rw-r--r--src/libcore/slice.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libcore/slice.rs b/src/libcore/slice.rs
index 233e556b27e..77fc0e7159f 100644
--- a/src/libcore/slice.rs
+++ b/src/libcore/slice.rs
@@ -61,7 +61,7 @@ use raw::Slice as RawSlice;
 /// Extension methods for slices.
 #[unstable(feature = "core_slice_ext",
            reason = "stable interface provided by `impl [T]` in later crates",
-           issue = "27701")]
+           issue = "32110")]
 #[allow(missing_docs)] // documented elsewhere
 pub trait SliceExt {
     type Item;
@@ -182,7 +182,7 @@ macro_rules! slice_ref {
 
 #[unstable(feature = "core_slice_ext",
            reason = "stable interface provided by `impl [T]` in later crates",
-           issue = "27701")]
+           issue = "32110")]
 impl<T> SliceExt for [T] {
     type Item = T;