Skip to content

Commit

Permalink
Update tracking issue
Browse files Browse the repository at this point in the history
  • Loading branch information
YuhanLiin committed Jun 18, 2021
1 parent e76929f commit 99939c4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion library/std/src/io/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1979,7 +1979,7 @@ pub trait BufRead: Read {
/// println!("{:?}", line);
/// }
/// ```
#[unstable(feature = "buf_read_has_data_left", reason = "recently added", issue = "40745")]
#[unstable(feature = "buf_read_has_data_left", reason = "recently added", issue = "86423")]
fn has_data_left(&mut self) -> Result<bool> {
self.fill_buf().map(|b| !b.is_empty())
}
Expand Down

0 comments on commit 99939c4

Please sign in to comment.