File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
library/core/src/iter/traits Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -123,7 +123,7 @@ pub trait DoubleEndedIterator: Iterator {
123123 /// assert_eq!(iter.advance_back_by(100), Err(1)); // only `&3` was skipped
124124 /// ```
125125 #[ inline]
126- #[ unstable( feature = "iter_advance_by" , reason = "recently added" , issue = "none " ) ]
126+ #[ unstable( feature = "iter_advance_by" , reason = "recently added" , issue = "77404 " ) ]
127127 fn advance_back_by ( & mut self , n : usize ) -> Result < ( ) , usize > {
128128 for i in 0 ..n {
129129 self . next_back ( ) . ok_or ( i) ?;
Original file line number Diff line number Diff line change @@ -314,7 +314,7 @@ pub trait Iterator {
314314 /// assert_eq!(iter.advance_by(100), Err(1)); // only `&4` was skipped
315315 /// ```
316316 #[ inline]
317- #[ unstable( feature = "iter_advance_by" , reason = "recently added" , issue = "none " ) ]
317+ #[ unstable( feature = "iter_advance_by" , reason = "recently added" , issue = "77404 " ) ]
318318 fn advance_by ( & mut self , n : usize ) -> Result < ( ) , usize > {
319319 for i in 0 ..n {
320320 self . next ( ) . ok_or ( i) ?;
You can’t perform that action at this time.
0 commit comments