@@ -20,7 +20,7 @@ use super::{FusedIterator, TrustedLen};
20
20
/// two `Step` objects.
21
21
#[ unstable( feature = "step_trait" ,
22
22
reason = "likely to be replaced by finer-grained traits" ,
23
- issue = "27741 " ) ]
23
+ issue = "42168 " ) ]
24
24
pub trait Step : PartialOrd + Sized {
25
25
/// Steps `self` if possible.
26
26
fn step ( & self , by : & Self ) -> Option < Self > ;
@@ -55,7 +55,7 @@ macro_rules! step_impl_unsigned {
55
55
( $( $t: ty) * ) => ( $(
56
56
#[ unstable( feature = "step_trait" ,
57
57
reason = "likely to be replaced by finer-grained traits" ,
58
- issue = "27741 " ) ]
58
+ issue = "42168 " ) ]
59
59
impl Step for $t {
60
60
#[ inline]
61
61
fn step( & self , by: & $t) -> Option <$t> {
@@ -115,7 +115,7 @@ macro_rules! step_impl_signed {
115
115
( $( $t: ty) * ) => ( $(
116
116
#[ unstable( feature = "step_trait" ,
117
117
reason = "likely to be replaced by finer-grained traits" ,
118
- issue = "27741 " ) ]
118
+ issue = "42168 " ) ]
119
119
impl Step for $t {
120
120
#[ inline]
121
121
fn step( & self , by: & $t) -> Option <$t> {
@@ -187,7 +187,7 @@ macro_rules! step_impl_no_between {
187
187
( $( $t: ty) * ) => ( $(
188
188
#[ unstable( feature = "step_trait" ,
189
189
reason = "likely to be replaced by finer-grained traits" ,
190
- issue = "27741 " ) ]
190
+ issue = "42168 " ) ]
191
191
impl Step for $t {
192
192
#[ inline]
193
193
fn step( & self , by: & $t) -> Option <$t> {
0 commit comments