]> git.lizzy.rs Git - rust.git/blobdiff - src/libcore/iter/traits.rs
core: Update stability attributes for FusedIterator
[rust.git] / src / libcore / iter / traits.rs
index a86f4e74706e2bc02e41919a717061617e2254a5..0267fcd375453cbcdd24f9f6e330ebdb3a65787f 100644 (file)
@@ -959,10 +959,10 @@ fn product<I>(iter: I) -> Result<T, E>
 /// [`None`]: ../../std/option/enum.Option.html#variant.None
 /// [`Iterator::fuse`]: ../../std/iter/trait.Iterator.html#method.fuse
 /// [`Fuse`]: ../../std/iter/struct.Fuse.html
-#[stable(feature = "fused", since = "1.25.0")]
+#[stable(feature = "fused", since = "1.26.0")]
 pub trait FusedIterator: Iterator {}
 
-#[stable(feature = "fused", since = "1.25.0")]
+#[stable(feature = "fused", since = "1.26.0")]
 impl<'a, I: FusedIterator + ?Sized> FusedIterator for &'a mut I {}
 
 /// An iterator that reports an accurate length using size_hint.