about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--src/doc/unstable-book/src/library-features/more-io-inner-methods.md4
-rw-r--r--src/libstd/io/mod.rs10
2 files changed, 8 insertions, 6 deletions
diff --git a/src/doc/unstable-book/src/library-features/more-io-inner-methods.md b/src/doc/unstable-book/src/library-features/more-io-inner-methods.md
index 1b56a8b395c..c84f40e7ee5 100644
--- a/src/doc/unstable-book/src/library-features/more-io-inner-methods.md
+++ b/src/doc/unstable-book/src/library-features/more-io-inner-methods.md
@@ -1,6 +1,8 @@
 # `more_io_inner_methods`
 
-The tracking issue for this feature is: None.
+The tracking issue for this feature is: [#41519]
+
+[#41519]: https://github.com/rust-lang/rust/issues/41519
 
 ------------------------
 
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
     }