about summary refs log tree commit diff
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2015-05-19 03:41:23 +0000
committerbors <bors@rust-lang.org>2015-05-19 03:41:23 +0000
commiteeaf2ba489e1c9b9d6d3e5f4566c3ecbdcaa14f2 (patch)
tree6a609f0981b55919af7c0bf7d72ad2e63f4ac669
parent8dbc3699213965feb422ff9257111f2edb2fc9db (diff)
parentf894417e6b75f9eaa276414de525ea56418f2f68 (diff)
downloadrust-eeaf2ba489e1c9b9d6d3e5f4566c3ecbdcaa14f2.tar.gz
rust-eeaf2ba489e1c9b9d6d3e5f4566c3ecbdcaa14f2.zip
Auto merge of #25496 - alexcrichton:stabilize-cloned, r=aturon
The method was stabilized but the structure was forgotten to be stabilized.

Closes #25480
-rw-r--r--src/libcore/iter.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libcore/iter.rs b/src/libcore/iter.rs
index cab79d938c3..091342226e0 100644
--- a/src/libcore/iter.rs
+++ b/src/libcore/iter.rs
@@ -1370,7 +1370,7 @@ impl<T: Clone> MinMaxResult<T> {
 }
 
 /// An iterator that clones the elements of an underlying iterator
-#[unstable(feature = "core", reason = "recent addition")]
+#[stable(feature = "iter_cloned", since = "1.1.0")]
 #[must_use = "iterator adaptors are lazy and do nothing unless consumed"]
 #[derive(Clone)]
 pub struct Cloned<I> {