Skip to content

Commit edd3cd8

Browse files
committed
Remove sometimes in std::io::Read doc
We use it immediately in the next sentence, and the word is filler.
1 parent 03abb1b commit edd3cd8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/libstd/io/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -389,7 +389,7 @@ fn read_to_end<R: Read + ?Sized>(r: &mut R, buf: &mut Vec<u8>) -> Result<usize>
389389

390390
/// The `Read` trait allows for reading bytes from a source.
391391
///
392-
/// Implementors of the `Read` trait are sometimes called 'readers'.
392+
/// Implementors of the `Read` trait are called 'readers'.
393393
///
394394
/// Readers are defined by one required method, `read()`. Each call to `read`
395395
/// will attempt to pull bytes from this source into a provided buffer. A

0 commit comments

Comments
 (0)