File tree 2 files changed +2
-2
lines changed
2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -153,7 +153,7 @@ pub enum ErrorKind {
153
153
/// This typically means that an operation could only succeed if it read a
154
154
/// particular number of bytes but only a smaller number of bytes could be
155
155
/// read.
156
- #[ unstable( feature = "read_exact" , reason = "recently added" ) ]
156
+ #[ unstable( feature = "read_exact" , reason = "recently added" , issue = "27585" ) ]
157
157
UnexpectedEOF ,
158
158
159
159
/// Any I/O error not part of this list.
Original file line number Diff line number Diff line change @@ -363,7 +363,7 @@ pub trait Read {
363
363
/// # Ok(())
364
364
/// # }
365
365
/// ```
366
- #[ unstable( feature = "read_exact" , reason = "recently added" ) ]
366
+ #[ unstable( feature = "read_exact" , reason = "recently added" , issue = "27585" ) ]
367
367
fn read_exact ( & mut self , mut buf : & mut [ u8 ] ) -> Result < ( ) > {
368
368
while !buf. is_empty ( ) {
369
369
match self . read ( buf) {
You can’t perform that action at this time.
0 commit comments