@@ -1515,7 +1515,7 @@ impl<T, U> Chain<T, U> {
1515
1515
/// # Ok(())
1516
1516
/// # }
1517
1517
/// ```
1518
- #[ unstable( feature = "more_io_inner_methods" , issue="0 " ) ]
1518
+ #[ unstable( feature = "more_io_inner_methods" , issue="41519 " ) ]
1519
1519
pub fn into_inner ( self ) -> ( T , U ) {
1520
1520
( self . first , self . second )
1521
1521
}
@@ -1540,7 +1540,7 @@ impl<T, U> Chain<T, U> {
1540
1540
/// # Ok(())
1541
1541
/// # }
1542
1542
/// ```
1543
- #[ unstable( feature = "more_io_inner_methods" , issue="0 " ) ]
1543
+ #[ unstable( feature = "more_io_inner_methods" , issue="41519 " ) ]
1544
1544
pub fn get_ref ( & self ) -> ( & T , & U ) {
1545
1545
( & self . first , & self . second )
1546
1546
}
@@ -1565,7 +1565,7 @@ impl<T, U> Chain<T, U> {
1565
1565
/// # Ok(())
1566
1566
/// # }
1567
1567
/// ```
1568
- #[ unstable( feature = "more_io_inner_methods" , issue="0 " ) ]
1568
+ #[ unstable( feature = "more_io_inner_methods" , issue="41519 " ) ]
1569
1569
pub fn get_mut ( & mut self ) -> ( & mut T , & mut U ) {
1570
1570
( & mut self . first , & mut self . second )
1571
1571
}
@@ -1706,7 +1706,7 @@ impl<T> Take<T> {
1706
1706
/// # Ok(())
1707
1707
/// # }
1708
1708
/// ```
1709
- #[ unstable( feature = "more_io_inner_methods" , issue="0 " ) ]
1709
+ #[ unstable( feature = "more_io_inner_methods" , issue="41519 " ) ]
1710
1710
pub fn get_ref ( & self ) -> & T {
1711
1711
& self . inner
1712
1712
}
@@ -1733,7 +1733,7 @@ impl<T> Take<T> {
1733
1733
/// # Ok(())
1734
1734
/// # }
1735
1735
/// ```
1736
- #[ unstable( feature = "more_io_inner_methods" , issue="0 " ) ]
1736
+ #[ unstable( feature = "more_io_inner_methods" , issue="41519 " ) ]
1737
1737
pub fn get_mut ( & mut self ) -> & mut T {
1738
1738
& mut self . inner
1739
1739
}
0 commit comments