about summary refs log tree commit diff
path: root/src/libstd_unicode
diff options
context:
space:
mode:
authorUlrik Sverdrup <bluss@users.noreply.github.com>2018-03-03 14:15:28 +0100
committerUlrik Sverdrup <bluss@users.noreply.github.com>2018-03-03 14:23:05 +0100
commitc7c23fe9482c129855a667909ff58969f6efe1f6 (patch)
treefb4ef267b3ec1f545cebf5f0837668cae7c7d532 /src/libstd_unicode
parentbc651cac8d671aee9be876b71d0fa86f94f56b0f (diff)
downloadrust-c7c23fe9482c129855a667909ff58969f6efe1f6.tar.gz
rust-c7c23fe9482c129855a667909ff58969f6efe1f6.zip
core: Update stability attributes for FusedIterator
Diffstat (limited to 'src/libstd_unicode')
-rw-r--r--src/libstd_unicode/char.rs4
-rw-r--r--src/libstd_unicode/u_str.rs3
2 files changed, 3 insertions, 4 deletions
diff --git a/src/libstd_unicode/char.rs b/src/libstd_unicode/char.rs
index 2bbbf6c0655..8d3df749ed7 100644
--- a/src/libstd_unicode/char.rs
+++ b/src/libstd_unicode/char.rs
@@ -70,7 +70,7 @@ impl Iterator for ToLowercase {
     }
 }
 
-#[stable(feature = "fused", since = "1.25.0")]
+#[stable(feature = "fused", since = "1.26.0")]
 impl FusedIterator for ToLowercase {}
 
 /// Returns an iterator that yields the uppercase equivalent of a `char`.
@@ -92,7 +92,7 @@ impl Iterator for ToUppercase {
     }
 }
 
-#[stable(feature = "fused", since = "1.25.0")]
+#[stable(feature = "fused", since = "1.26.0")]
 impl FusedIterator for ToUppercase {}
 
 #[derive(Debug)]
diff --git a/src/libstd_unicode/u_str.rs b/src/libstd_unicode/u_str.rs
index ed2f205b580..a72e1210d93 100644
--- a/src/libstd_unicode/u_str.rs
+++ b/src/libstd_unicode/u_str.rs
@@ -127,7 +127,6 @@ impl<I> Iterator for Utf16Encoder<I>
     }
 }
 
-#[stable(feature = "fused", since = "1.25.0")]
 impl<I> FusedIterator for Utf16Encoder<I>
     where I: FusedIterator<Item = char> {}
 
@@ -186,5 +185,5 @@ impl<'a> DoubleEndedIterator for SplitWhitespace<'a> {
     }
 }
 
-#[stable(feature = "fused", since = "1.25.0")]
+#[stable(feature = "fused", since = "1.26.0")]
 impl<'a> FusedIterator for SplitWhitespace<'a> {}