diff options
| author | Alex Crichton <alex@alexcrichton.com> | 2016-03-07 16:34:35 -0800 |
|---|---|---|
| committer | Alex Crichton <alex@alexcrichton.com> | 2016-03-11 22:09:58 -0800 |
| commit | aed7ddae8ea7f549dc2d493fda49dfa49de429b7 (patch) | |
| tree | 444bbd633da071ed3d5564de194eda3add6ae074 /src/libcore/slice.rs | |
| parent | a38bf6e23d13bd479cf89b338f0862395d22fd07 (diff) | |
| download | rust-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.rs | 4 |
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; |
