Merge pull request #152 from montekki/fs-fix-buf-read-docs

fixes docs for io::buf_read::read_until
staging
Florian Gilcher 5 years ago committed by GitHub
commit 481002ee71
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -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