Remove sometimes in std::io::Read doc

We use it immediately in the next sentence, and the word is filler.
This commit is contained in:
Havvy 2017-06-13 18:49:30 -07:00
parent 03abb1bd70
commit edd3cd84fe
1 changed files with 1 additions and 1 deletions

View File

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