fixes docs for io::buf_read::read_until

staging
Fedor Sakharov 5 years ago
parent bac74c2d7f
commit a2c2413bc5
No known key found for this signature in database
GPG Key ID: 93D436E666BF0FEE

@ -54,7 +54,7 @@ pub trait BufRead {
///
/// let mut file = BufReader::new(File::open("a.txt").await?);
///
/// let mut buf = vec![0; 1024];
/// let mut buf = Vec::with_capacity(1024);
/// let n = file.read_until(b'\n', &mut buf).await?;
/// #
/// # Ok(()) }) }

Loading…
Cancel
Save