Skip to content

Commit 36be763

Browse files
committed
Iterator::flatten: fix tracking issue number on FusedIterator for Flatten
1 parent 6af23f9 commit 36be763

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/libcore/iter/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2555,7 +2555,7 @@ impl<I, U> DoubleEndedIterator for Flatten<I, U>
25552555
}
25562556
}
25572557

2558-
#[unstable(feature = "fused", issue = "0")]
2558+
#[unstable(feature = "fused", issue = "35602")]
25592559
impl<I: FusedIterator, U: Iterator> FusedIterator for Flatten<I, U>
25602560
where I::Item: IntoIterator<IntoIter = U, Item = U::Item> {}
25612561

0 commit comments

Comments
 (0)