Skip to content

Commit 071333d

Browse files
committed
Fixup Fused impl
1 parent 815ff51 commit 071333d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/libcore/iter/sources.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ impl<A, F: FnMut() -> A> DoubleEndedIterator for RepeatWith<F> {
135135
fn next_back(&mut self) -> Option<A> { self.next() }
136136
}
137137

138-
#[unstable(feature = "fused", issue = "35602")]
138+
#[stable(feature = "fused", since = "1.25.0")]
139139
impl<A, F: FnMut() -> A> FusedIterator for RepeatWith<F> {}
140140

141141
#[unstable(feature = "trusted_len", issue = "37572")]

0 commit comments

Comments
 (0)