summary refs log tree commit diff
path: root/src/libstd/path.rs
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/path.rs
parentbc651cac8d671aee9be876b71d0fa86f94f56b0f (diff)
downloadrust-c7c23fe9482c129855a667909ff58969f6efe1f6.tar.gz
rust-c7c23fe9482c129855a667909ff58969f6efe1f6.zip
core: Update stability attributes for FusedIterator
Diffstat (limited to 'src/libstd/path.rs')
-rw-r--r--src/libstd/path.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/libstd/path.rs b/src/libstd/path.rs
index 0c54fb00d2d..cd2af99d6ac 100644
--- a/src/libstd/path.rs
+++ b/src/libstd/path.rs
@@ -905,7 +905,7 @@ impl<'a> DoubleEndedIterator for Iter<'a> {
     }
 }
 
-#[stable(feature = "fused", since = "1.25.0")]
+#[stable(feature = "fused", since = "1.26.0")]
 impl<'a> FusedIterator for Iter<'a> {}
 
 #[stable(feature = "rust1", since = "1.0.0")]
@@ -1008,7 +1008,7 @@ impl<'a> DoubleEndedIterator for Components<'a> {
     }
 }
 
-#[stable(feature = "fused", since = "1.25.0")]
+#[stable(feature = "fused", since = "1.26.0")]
 impl<'a> FusedIterator for Components<'a> {}
 
 #[stable(feature = "rust1", since = "1.0.0")]
@@ -1076,7 +1076,7 @@ impl<'a> Iterator for Ancestors<'a> {
     }
 }
 
-#[unstable(feature = "fused", issue = "35602")]
+#[unstable(feature = "path_ancestors", issue = "48581")]
 impl<'a> FusedIterator for Ancestors<'a> {}
 
 ////////////////////////////////////////////////////////////////////////////////