From 76397aea50a506ac177b74d352a0ebbe99d4cdc6 Mon Sep 17 00:00:00 2001 From: Sergio Benitez Date: Mon, 24 Apr 2017 16:46:05 -0700 Subject: [PATCH] Reference tracking issue for more_io_inner_methods. --- .../src/library-features/more-io-inner-methods.md | 4 +++- src/libstd/io/mod.rs | 10 +++++----- 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 Chain { /// # 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 Chain { /// # 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 Chain { /// # 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 Take { /// # 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 Take { /// # 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 }