Skip to content

Commit f894417

Browse files
committed
std: Fix missing stability on iter::Cloned
The method was stabilized but the structure was forgotten to be stabilized. Closes #25480
1 parent 5e535ea commit f894417

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/libcore/iter.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1370,7 +1370,7 @@ impl<T: Clone> MinMaxResult<T> {
13701370
}
13711371

13721372
/// An iterator that clones the elements of an underlying iterator
1373-
#[unstable(feature = "core", reason = "recent addition")]
1373+
#[stable(feature = "iter_cloned", since = "1.1.0")]
13741374
#[must_use = "iterator adaptors are lazy and do nothing unless consumed"]
13751375
#[derive(Clone)]
13761376
pub struct Cloned<I> {

0 commit comments

Comments
 (0)