@@ -1589,8 +1589,6 @@ impl<T, U> Chain<T, U> {
15891589 /// # Examples
15901590 ///
15911591 /// ```
1592- /// #![feature(more_io_inner_methods)]
1593- ///
15941592 /// # use std::io;
15951593 /// use std::io::prelude::*;
15961594 /// use std::fs::File;
@@ -1604,7 +1602,7 @@ impl<T, U> Chain<T, U> {
16041602 /// # Ok(())
16051603 /// # }
16061604 /// ```
1607- #[ unstable ( feature = "more_io_inner_methods" , issue= "41519 ") ]
1605+ #[ stable ( feature = "more_io_inner_methods" , since = "1.20.0 ") ]
16081606 pub fn into_inner ( self ) -> ( T , U ) {
16091607 ( self . first , self . second )
16101608 }
@@ -1614,8 +1612,6 @@ impl<T, U> Chain<T, U> {
16141612 /// # Examples
16151613 ///
16161614 /// ```
1617- /// #![feature(more_io_inner_methods)]
1618- ///
16191615 /// # use std::io;
16201616 /// use std::io::prelude::*;
16211617 /// use std::fs::File;
@@ -1629,7 +1625,7 @@ impl<T, U> Chain<T, U> {
16291625 /// # Ok(())
16301626 /// # }
16311627 /// ```
1632- #[ unstable ( feature = "more_io_inner_methods" , issue= "41519 ") ]
1628+ #[ stable ( feature = "more_io_inner_methods" , since = "1.20.0 ") ]
16331629 pub fn get_ref ( & self ) -> ( & T , & U ) {
16341630 ( & self . first , & self . second )
16351631 }
@@ -1643,8 +1639,6 @@ impl<T, U> Chain<T, U> {
16431639 /// # Examples
16441640 ///
16451641 /// ```
1646- /// #![feature(more_io_inner_methods)]
1647- ///
16481642 /// # use std::io;
16491643 /// use std::io::prelude::*;
16501644 /// use std::fs::File;
@@ -1658,7 +1652,7 @@ impl<T, U> Chain<T, U> {
16581652 /// # Ok(())
16591653 /// # }
16601654 /// ```
1661- #[ unstable ( feature = "more_io_inner_methods" , issue= "41519 ") ]
1655+ #[ stable ( feature = "more_io_inner_methods" , since = "1.20.0 ") ]
16621656 pub fn get_mut ( & mut self ) -> ( & mut T , & mut U ) {
16631657 ( & mut self . first , & mut self . second )
16641658 }
@@ -1791,8 +1785,6 @@ impl<T> Take<T> {
17911785 /// # Examples
17921786 ///
17931787 /// ```
1794- /// #![feature(more_io_inner_methods)]
1795- ///
17961788 /// use std::io;
17971789 /// use std::io::prelude::*;
17981790 /// use std::fs::File;
@@ -1808,7 +1800,7 @@ impl<T> Take<T> {
18081800 /// # Ok(())
18091801 /// # }
18101802 /// ```
1811- #[ unstable ( feature = "more_io_inner_methods" , issue= "41519 ") ]
1803+ #[ stable ( feature = "more_io_inner_methods" , since = "1.20.0 ") ]
18121804 pub fn get_ref ( & self ) -> & T {
18131805 & self . inner
18141806 }
@@ -1822,8 +1814,6 @@ impl<T> Take<T> {
18221814 /// # Examples
18231815 ///
18241816 /// ```
1825- /// #![feature(more_io_inner_methods)]
1826- ///
18271817 /// use std::io;
18281818 /// use std::io::prelude::*;
18291819 /// use std::fs::File;
@@ -1839,7 +1829,7 @@ impl<T> Take<T> {
18391829 /// # Ok(())
18401830 /// # }
18411831 /// ```
1842- #[ unstable ( feature = "more_io_inner_methods" , issue= "41519 ") ]
1832+ #[ stable ( feature = "more_io_inner_methods" , since = "1.20.0 ") ]
18431833 pub fn get_mut ( & mut self ) -> & mut T {
18441834 & mut self . inner
18451835 }
0 commit comments