From edd3cd84feab2672f448017e0e41f04e114dfaf3 Mon Sep 17 00:00:00 2001 From: Havvy Date: Tue, 13 Jun 2017 18:49:30 -0700 Subject: [PATCH] Remove sometimes in std::io::Read doc We use it immediately in the next sentence, and the word is filler. --- src/libstd/io/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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: &mut R, buf: &mut Vec) -> Result /// 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