File tree Expand file tree Collapse file tree 6 files changed +7
-7
lines changed Expand file tree Collapse file tree 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> {
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 " ) ]
259259pub trait CharExt {
260260 #[ stable( feature = "core" , since = "1.6.0" ) ]
261261 fn is_digit ( self , radix : u32 ) -> bool ;
Original file line number Diff line number Diff 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 " ) ]
145145impl Float for f32 {
146146 #[ inline]
147147 fn nan ( ) -> f32 { NAN }
Original file line number Diff line number Diff 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 " ) ]
145145impl Float for f64 {
146146 #[ inline]
147147 fn nan ( ) -> f64 { NAN }
Original file line number Diff line number Diff 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 " ) ]
22132213pub trait Float : Sized {
22142214 /// Returns the NaN value.
22152215 #[ 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;
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
6666pub 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 " ) ]
186186impl < T > SliceExt for [ T ] {
187187 type Item = T ;
188188
Original file line number Diff line number Diff 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 " ) ]
15651565pub trait StrExt {
15661566 // NB there are no docs here are they're all located on the StrExt trait in
15671567 // libcollections, not here.
You can’t perform that action at this time.
0 commit comments