File tree 6 files changed +7
-7
lines changed
6 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -255,7 +255,7 @@ pub fn from_digit(num: u32, radix: u32) -> Option<char> {
255
255
#[ doc( hidden) ]
256
256
#[ unstable( feature = "core_char_ext" ,
257
257
reason = "the stable interface is `impl char` in later crate" ,
258
- issue = "27701 " ) ]
258
+ issue = "32110 " ) ]
259
259
pub trait CharExt {
260
260
#[ stable( feature = "core" , since = "1.6.0" ) ]
261
261
fn is_digit ( self , radix : u32 ) -> bool ;
Original file line number Diff line number Diff line change @@ -141,7 +141,7 @@ pub mod consts {
141
141
142
142
#[ unstable( feature = "core_float" ,
143
143
reason = "stable interface is via `impl f{32,64}` in later crates" ,
144
- issue = "27702 " ) ]
144
+ issue = "32110 " ) ]
145
145
impl Float for f32 {
146
146
#[ inline]
147
147
fn nan ( ) -> f32 { NAN }
Original file line number Diff line number Diff line change @@ -141,7 +141,7 @@ pub mod consts {
141
141
142
142
#[ unstable( feature = "core_float" ,
143
143
reason = "stable interface is via `impl f{32,64}` in later crates" ,
144
- issue = "27702 " ) ]
144
+ issue = "32110 " ) ]
145
145
impl Float for f64 {
146
146
#[ inline]
147
147
fn nan ( ) -> f64 { NAN }
Original file line number Diff line number Diff line change @@ -2209,7 +2209,7 @@ pub enum FpCategory {
2209
2209
#[ doc( hidden) ]
2210
2210
#[ unstable( feature = "core_float" ,
2211
2211
reason = "stable interface is via `impl f{32,64}` in later crates" ,
2212
- issue = "27702 " ) ]
2212
+ issue = "32110 " ) ]
2213
2213
pub trait Float : Sized {
2214
2214
/// Returns the NaN value.
2215
2215
#[ unstable( feature = "float_extras" , reason = "needs removal" ,
Original file line number Diff line number Diff line change @@ -61,7 +61,7 @@ use raw::Slice as RawSlice;
61
61
/// Extension methods for slices.
62
62
#[ unstable( feature = "core_slice_ext" ,
63
63
reason = "stable interface provided by `impl [T]` in later crates" ,
64
- issue = "27701 " ) ]
64
+ issue = "32110 " ) ]
65
65
#[ allow( missing_docs) ] // documented elsewhere
66
66
pub trait SliceExt {
67
67
type Item ;
@@ -182,7 +182,7 @@ macro_rules! slice_ref {
182
182
183
183
#[ unstable( feature = "core_slice_ext" ,
184
184
reason = "stable interface provided by `impl [T]` in later crates" ,
185
- issue = "27701 " ) ]
185
+ issue = "32110 " ) ]
186
186
impl < T > SliceExt for [ T ] {
187
187
type Item = T ;
188
188
Original file line number Diff line number Diff line change @@ -1561,7 +1561,7 @@ mod traits {
1561
1561
#[ doc( hidden) ]
1562
1562
#[ unstable( feature = "core_str_ext" ,
1563
1563
reason = "stable interface provided by `impl str` in later crates" ,
1564
- issue = "27701 " ) ]
1564
+ issue = "32110 " ) ]
1565
1565
pub trait StrExt {
1566
1566
// NB there are no docs here are they're all located on the StrExt trait in
1567
1567
// libcollections, not here.
You can’t perform that action at this time.
0 commit comments