about summary refs log tree commit diff
path: root/src/libstd
diff options
context:
space:
mode:
authorHavvy <ryan.havvy@gmail.com>2017-06-13 18:49:30 -0700
committerHavvy <ryan.havvy@gmail.com>2017-06-13 18:49:34 -0700
commitedd3cd84feab2672f448017e0e41f04e114dfaf3 (patch)
tree059bd114efe0c0031e49c98208b0214044812e42 /src/libstd
parent03abb1bd70ac56e4aba0684bab819892a0157843 (diff)
downloadrust-edd3cd84feab2672f448017e0e41f04e114dfaf3.tar.gz
rust-edd3cd84feab2672f448017e0e41f04e114dfaf3.zip
Remove sometimes in std::io::Read doc
We use it immediately in the next sentence, and the word is filler.
Diffstat (limited to 'src/libstd')
-rw-r--r--src/libstd/io/mod.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstd/io/mod.rs b/src/libstd/io/mod.rs
index c872a8e5261..23836adced8 100644
--- a/src/libstd/io/mod.rs
+++ b/src/libstd/io/mod.rs
@@ -389,7 +389,7 @@ fn read_to_end<R: Read + ?Sized>(r: &mut R, buf: &mut Vec<u8>) -> Result<usize>
 
 /// The `Read` trait allows for reading bytes from a source.
 ///
-/// Implementors of the `Read` trait are sometimes called 'readers'.
+/// Implementors of the `Read` trait are called 'readers'.
 ///
 /// Readers are defined by one required method, `read()`. Each call to `read`
 /// will attempt to pull bytes from this source into a provided buffer. A