diff options
| author | YuhanLiin <yuhanliin+github@protonmail.com> | 2021-06-17 23:17:16 -0400 |
|---|---|---|
| committer | YuhanLiin <yuhanliin+github@protonmail.com> | 2021-06-17 23:17:16 -0400 |
| commit | 99939c44c3fabbd4bfcb87839072ba563ce12d9b (patch) | |
| tree | 753fd454e7b7b6f3590ac59a7095c981b4a18ae2 | |
| parent | e76929ff981cd50e6a4d4936bf1f89ed625b032a (diff) | |
| download | rust-99939c44c3fabbd4bfcb87839072ba563ce12d9b.tar.gz rust-99939c44c3fabbd4bfcb87839072ba563ce12d9b.zip | |
Update tracking issue
| -rw-r--r-- | library/std/src/io/mod.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/library/std/src/io/mod.rs b/library/std/src/io/mod.rs index 21cad51bf93..6963f4132ac 100644 --- a/library/std/src/io/mod.rs +++ b/library/std/src/io/mod.rs @@ -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()) } |
