Skip to content

Commit 4404c1a

Browse files
committed
Add tracking issue
1 parent 9cba260 commit 4404c1a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

library/core/src/iter/traits/double_ended.rs

+1-1
Original file line numberDiff line numberDiff 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)?;

library/core/src/iter/traits/iterator.rs

+1-1
Original file line numberDiff line numberDiff 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)?;

0 commit comments

Comments
 (0)