Skip to content

Commit aed7dda

Browse files
committed
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.
1 parent a38bf6e commit aed7dda

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

src/libcore/char.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -255,7 +255,7 @@ pub fn from_digit(num: u32, radix: u32) -> Option<char> {
255255
#[doc(hidden)]
256256
#[unstable(feature = "core_char_ext",
257257
reason = "the stable interface is `impl char` in later crate",
258-
issue = "27701")]
258+
issue = "32110")]
259259
pub trait CharExt {
260260
#[stable(feature = "core", since = "1.6.0")]
261261
fn is_digit(self, radix: u32) -> bool;

src/libcore/num/f32.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ pub mod consts {
141141

142142
#[unstable(feature = "core_float",
143143
reason = "stable interface is via `impl f{32,64}` in later crates",
144-
issue = "27702")]
144+
issue = "32110")]
145145
impl Float for f32 {
146146
#[inline]
147147
fn nan() -> f32 { NAN }

src/libcore/num/f64.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ pub mod consts {
141141

142142
#[unstable(feature = "core_float",
143143
reason = "stable interface is via `impl f{32,64}` in later crates",
144-
issue = "27702")]
144+
issue = "32110")]
145145
impl Float for f64 {
146146
#[inline]
147147
fn nan() -> f64 { NAN }

src/libcore/num/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -2209,7 +2209,7 @@ pub enum FpCategory {
22092209
#[doc(hidden)]
22102210
#[unstable(feature = "core_float",
22112211
reason = "stable interface is via `impl f{32,64}` in later crates",
2212-
issue = "27702")]
2212+
issue = "32110")]
22132213
pub trait Float: Sized {
22142214
/// Returns the NaN value.
22152215
#[unstable(feature = "float_extras", reason = "needs removal",

src/libcore/slice.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ use raw::Slice as RawSlice;
6161
/// Extension methods for slices.
6262
#[unstable(feature = "core_slice_ext",
6363
reason = "stable interface provided by `impl [T]` in later crates",
64-
issue = "27701")]
64+
issue = "32110")]
6565
#[allow(missing_docs)] // documented elsewhere
6666
pub trait SliceExt {
6767
type Item;
@@ -182,7 +182,7 @@ macro_rules! slice_ref {
182182

183183
#[unstable(feature = "core_slice_ext",
184184
reason = "stable interface provided by `impl [T]` in later crates",
185-
issue = "27701")]
185+
issue = "32110")]
186186
impl<T> SliceExt for [T] {
187187
type Item = T;
188188

src/libcore/str/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1561,7 +1561,7 @@ mod traits {
15611561
#[doc(hidden)]
15621562
#[unstable(feature = "core_str_ext",
15631563
reason = "stable interface provided by `impl str` in later crates",
1564-
issue = "27701")]
1564+
issue = "32110")]
15651565
pub trait StrExt {
15661566
// NB there are no docs here are they're all located on the StrExt trait in
15671567
// libcollections, not here.

0 commit comments

Comments
 (0)