about summary refs log tree commit diff
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2015-06-23 02:32:44 +0000
committerbors <bors@rust-lang.org>2015-06-23 02:32:44 +0000
commite749f724b07121e965120f6974aa0b3fda888944 (patch)
treef42b771a9d0bf4b4b08f8408a8c38783a774b4ff
parentcffaf0e7a82e7b95bf76f37ad074451409a995e9 (diff)
parent4ce7901a5a08b215c40ead6bcbf81779b4b2162c (diff)
downloadrust-e749f724b07121e965120f6974aa0b3fda888944.tar.gz
rust-e749f724b07121e965120f6974aa0b3fda888944.zip
Auto merge of #26514 - tshepang:repetition, r=Gankro
-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 3d0dfbba0ab..9021f32fad0 100644
--- a/src/libstd/io/mod.rs
+++ b/src/libstd/io/mod.rs
@@ -571,7 +571,7 @@ pub trait BufRead: Read {
         read_until(self, byte, buf)
     }
 
-    /// Read all bytes until a newline byte (the 0xA byte) is reached, and
+    /// Read all bytes until a newline (the 0xA byte) is reached, and
     /// append them to the provided buffer.
     ///
     /// This function will continue to read (and buffer) bytes from the