Skip to content

Commit 1d7d765

Browse files
committed
Add tracking issue ID for bufread_skip_until feature gate
1 parent 7c9ad34 commit 1d7d765

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

library/std/src/io/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2205,7 +2205,7 @@ pub trait BufRead: Read {
22052205
/// assert_eq!(num_bytes, 11);
22062206
/// assert_eq!(animal, b"Crustacean\0");
22072207
/// ```
2208-
#[unstable(feature = "bufread_skip_until", issue = "none")]
2208+
#[unstable(feature = "bufread_skip_until", issue = "111735")]
22092209
fn skip_until(&mut self, byte: u8) -> Result<usize> {
22102210
skip_until(self, byte)
22112211
}

0 commit comments

Comments
 (0)