Rollup merge of #43915 - adrian5:patch-1, r=sfackler

Fix typo in doc
This commit is contained in:
Corey Farwell 2017-08-17 10:44:11 -04:00 committed by GitHub
commit 32bd145f60
1 changed files with 1 additions and 1 deletions

View File

@ -69,7 +69,7 @@ use io::{self, Initializer, SeekFrom, Error, ErrorKind};
/// // now let's write a test
/// #[test]
/// fn test_writes_bytes() {
/// // setting up a real File is much more slow than an in-memory buffer,
/// // setting up a real File is much slower than an in-memory buffer,
/// // let's use a cursor instead
/// use std::io::Cursor;
/// let mut buff = Cursor::new(vec![0; 15]);