about summary refs log tree commit diff
path: root/src/libstd
diff options
context:
space:
mode:
authorSergio Benitez <sb@sergio.bz>2017-04-24 16:46:05 -0700
committerSergio Benitez <sb@sergio.bz>2017-04-24 17:12:38 -0700
commit76397aea50a506ac177b74d352a0ebbe99d4cdc6 (patch)
tree48373ad79a35973a3688d2180b1e77325da6ca54 /src/libstd
parentaab87e3e9e71696d475a0b2c57f0dee7f702fc27 (diff)
downloadrust-76397aea50a506ac177b74d352a0ebbe99d4cdc6.tar.gz
rust-76397aea50a506ac177b74d352a0ebbe99d4cdc6.zip
Reference tracking issue for more_io_inner_methods.
Diffstat (limited to 'src/libstd')
-rw-r--r--src/libstd/io/mod.rs10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/libstd/io/mod.rs b/src/libstd/io/mod.rs
index cf548346b17..a30246ae88b 100644
--- a/src/libstd/io/mod.rs
+++ b/src/libstd/io/mod.rs
@@ -1515,7 +1515,7 @@ impl<T, U> Chain<T, U> {
     /// # Ok(())
     /// # }
     /// ```
-    #[unstable(feature = "more_io_inner_methods", issue="0")]
+    #[unstable(feature = "more_io_inner_methods", issue="41519")]
     pub fn into_inner(self) -> (T, U) {
         (self.first, self.second)
     }
@@ -1540,7 +1540,7 @@ impl<T, U> Chain<T, U> {
     /// # Ok(())
     /// # }
     /// ```
-    #[unstable(feature = "more_io_inner_methods", issue="0")]
+    #[unstable(feature = "more_io_inner_methods", issue="41519")]
     pub fn get_ref(&self) -> (&T, &U) {
         (&self.first, &self.second)
     }
@@ -1565,7 +1565,7 @@ impl<T, U> Chain<T, U> {
     /// # Ok(())
     /// # }
     /// ```
-    #[unstable(feature = "more_io_inner_methods", issue="0")]
+    #[unstable(feature = "more_io_inner_methods", issue="41519")]
     pub fn get_mut(&mut self) -> (&mut T, &mut U) {
         (&mut self.first, &mut self.second)
     }
@@ -1706,7 +1706,7 @@ impl<T> Take<T> {
     /// # Ok(())
     /// # }
     /// ```
-    #[unstable(feature = "more_io_inner_methods", issue="0")]
+    #[unstable(feature = "more_io_inner_methods", issue="41519")]
     pub fn get_ref(&self) -> &T {
         &self.inner
     }
@@ -1733,7 +1733,7 @@ impl<T> Take<T> {
     /// # Ok(())
     /// # }
     /// ```
-    #[unstable(feature = "more_io_inner_methods", issue="0")]
+    #[unstable(feature = "more_io_inner_methods", issue="41519")]
     pub fn get_mut(&mut self) -> &mut T {
         &mut self.inner
     }