Skip to content

Commit 99939c4

Browse files
committed
Update tracking issue
1 parent e76929f commit 99939c4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

library/std/src/io/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1979,7 +1979,7 @@ pub trait BufRead: Read {
19791979
/// println!("{:?}", line);
19801980
/// }
19811981
/// ```
1982-
#[unstable(feature = "buf_read_has_data_left", reason = "recently added", issue = "40745")]
1982+
#[unstable(feature = "buf_read_has_data_left", reason = "recently added", issue = "86423")]
19831983
fn has_data_left(&mut self) -> Result<bool> {
19841984
self.fill_buf().map(|b| !b.is_empty())
19851985
}

0 commit comments

Comments
 (0)