File tree 2 files changed +2
-2
lines changed
library/core/src/iter/traits
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 {
123
123
/// assert_eq!(iter.advance_back_by(100), Err(1)); // only `&3` was skipped
124
124
/// ```
125
125
#[ inline]
126
- #[ unstable( feature = "iter_advance_by" , reason = "recently added" , issue = "none " ) ]
126
+ #[ unstable( feature = "iter_advance_by" , reason = "recently added" , issue = "77404 " ) ]
127
127
fn advance_back_by ( & mut self , n : usize ) -> Result < ( ) , usize > {
128
128
for i in 0 ..n {
129
129
self . next_back ( ) . ok_or ( i) ?;
Original file line number Diff line number Diff line change @@ -314,7 +314,7 @@ pub trait Iterator {
314
314
/// assert_eq!(iter.advance_by(100), Err(1)); // only `&4` was skipped
315
315
/// ```
316
316
#[ inline]
317
- #[ unstable( feature = "iter_advance_by" , reason = "recently added" , issue = "none " ) ]
317
+ #[ unstable( feature = "iter_advance_by" , reason = "recently added" , issue = "77404 " ) ]
318
318
fn advance_by ( & mut self , n : usize ) -> Result < ( ) , usize > {
319
319
for i in 0 ..n {
320
320
self . next ( ) . ok_or ( i) ?;
You can’t perform that action at this time.
0 commit comments