Skip to content

Commit f5f74a2

Browse files
authored
Rollup merge of #42685 - Havvy:doc-remove-sometimes, r=steveklabnik
Remove sometimes in std::io::Read doc We use it immediately in the next sentence, and the word is filler. A different conversation to make is whether we want to call them Readers in the documentation at all. And whether it's actually called "Readers" elsewhere.
2 parents 999f3ad + edd3cd8 commit f5f74a2

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)