Skip to content

Commit 76397ae

Browse files
committed
Reference tracking issue for more_io_inner_methods.
1 parent aab87e3 commit 76397ae

File tree

2 files changed

+8
-6
lines changed

2 files changed

+8
-6
lines changed

src/doc/unstable-book/src/library-features/more-io-inner-methods.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
# `more_io_inner_methods`
22

3-
The tracking issue for this feature is: None.
3+
The tracking issue for this feature is: [#41519]
4+
5+
[#41519]: https://github.com/rust-lang/rust/issues/41519
46

57
------------------------
68

src/libstd/io/mod.rs

+5-5
Original file line numberDiff line numberDiff line change
@@ -1515,7 +1515,7 @@ impl<T, U> Chain<T, U> {
15151515
/// # Ok(())
15161516
/// # }
15171517
/// ```
1518-
#[unstable(feature = "more_io_inner_methods", issue="0")]
1518+
#[unstable(feature = "more_io_inner_methods", issue="41519")]
15191519
pub fn into_inner(self) -> (T, U) {
15201520
(self.first, self.second)
15211521
}
@@ -1540,7 +1540,7 @@ impl<T, U> Chain<T, U> {
15401540
/// # Ok(())
15411541
/// # }
15421542
/// ```
1543-
#[unstable(feature = "more_io_inner_methods", issue="0")]
1543+
#[unstable(feature = "more_io_inner_methods", issue="41519")]
15441544
pub fn get_ref(&self) -> (&T, &U) {
15451545
(&self.first, &self.second)
15461546
}
@@ -1565,7 +1565,7 @@ impl<T, U> Chain<T, U> {
15651565
/// # Ok(())
15661566
/// # }
15671567
/// ```
1568-
#[unstable(feature = "more_io_inner_methods", issue="0")]
1568+
#[unstable(feature = "more_io_inner_methods", issue="41519")]
15691569
pub fn get_mut(&mut self) -> (&mut T, &mut U) {
15701570
(&mut self.first, &mut self.second)
15711571
}
@@ -1706,7 +1706,7 @@ impl<T> Take<T> {
17061706
/// # Ok(())
17071707
/// # }
17081708
/// ```
1709-
#[unstable(feature = "more_io_inner_methods", issue="0")]
1709+
#[unstable(feature = "more_io_inner_methods", issue="41519")]
17101710
pub fn get_ref(&self) -> &T {
17111711
&self.inner
17121712
}
@@ -1733,7 +1733,7 @@ impl<T> Take<T> {
17331733
/// # Ok(())
17341734
/// # }
17351735
/// ```
1736-
#[unstable(feature = "more_io_inner_methods", issue="0")]
1736+
#[unstable(feature = "more_io_inner_methods", issue="41519")]
17371737
pub fn get_mut(&mut self) -> &mut T {
17381738
&mut self.inner
17391739
}

0 commit comments

Comments
 (0)