]> git.lizzy.rs Git - rust.git/commitdiff
Fix typo in doc
authoradrian5 <adrian5@users.noreply.github.com>
Wed, 16 Aug 2017 22:46:30 +0000 (00:46 +0200)
committerGitHub <noreply@github.com>
Wed, 16 Aug 2017 22:46:30 +0000 (00:46 +0200)
src/libstd/io/cursor.rs

index d986021a18bbc7676e072c4001670aa3ae119b45..32a92145aafedf68e6e95d7b0ddb41b36fd185c7 100644 (file)
@@ -69,7 +69,7 @@
 /// // 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]);