@@ -20,7 +20,7 @@ use super::{FusedIterator, TrustedLen};
2020/// two `Step` objects.
2121#[ unstable( feature = "step_trait" ,
2222 reason = "likely to be replaced by finer-grained traits" ,
23- issue = "27741 " ) ]
23+ issue = "42168 " ) ]
2424pub trait Step : PartialOrd + Sized {
2525 /// Steps `self` if possible.
2626 fn step ( & self , by : & Self ) -> Option < Self > ;
@@ -55,7 +55,7 @@ macro_rules! step_impl_unsigned {
5555 ( $( $t: ty) * ) => ( $(
5656 #[ unstable( feature = "step_trait" ,
5757 reason = "likely to be replaced by finer-grained traits" ,
58- issue = "27741 " ) ]
58+ issue = "42168 " ) ]
5959 impl Step for $t {
6060 #[ inline]
6161 fn step( & self , by: & $t) -> Option <$t> {
@@ -115,7 +115,7 @@ macro_rules! step_impl_signed {
115115 ( $( $t: ty) * ) => ( $(
116116 #[ unstable( feature = "step_trait" ,
117117 reason = "likely to be replaced by finer-grained traits" ,
118- issue = "27741 " ) ]
118+ issue = "42168 " ) ]
119119 impl Step for $t {
120120 #[ inline]
121121 fn step( & self , by: & $t) -> Option <$t> {
@@ -187,7 +187,7 @@ macro_rules! step_impl_no_between {
187187 ( $( $t: ty) * ) => ( $(
188188 #[ unstable( feature = "step_trait" ,
189189 reason = "likely to be replaced by finer-grained traits" ,
190- issue = "27741 " ) ]
190+ issue = "42168 " ) ]
191191 impl Step for $t {
192192 #[ inline]
193193 fn step( & self , by: & $t) -> Option <$t> {
0 commit comments