about summary refs log tree commit diff
path: root/src/libstd
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2015-04-07 16:44:11 +0000
committerbors <bors@rust-lang.org>2015-04-07 16:44:11 +0000
commit1fd89b625be075e81da1791d6d22e9835512036c (patch)
tree9e1ed28a3f478a1259f2872ef4a37318f52a1b81 /src/libstd
parentb41f2df4ca92e9ab816d9b6649c0fc5df9e9d213 (diff)
parentae64d8e41538fc760b20185e3f2d63826bc1bd34 (diff)
downloadrust-1fd89b625be075e81da1791d6d22e9835512036c.tar.gz
rust-1fd89b625be075e81da1791d6d22e9835512036c.zip
Auto merge of #24156 - Manishearth:rollup, r=Manishearth
Diffstat (limited to 'src/libstd')
-rw-r--r--src/libstd/io/mod.rs3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/libstd/io/mod.rs b/src/libstd/io/mod.rs
index c6335015d72..f0f37117ed3 100644
--- a/src/libstd/io/mod.rs
+++ b/src/libstd/io/mod.rs
@@ -618,9 +618,6 @@ pub trait BufRead: Read {
     /// The iterator returned from this function will yield instances of
     /// `io::Result<String>`. Each string returned will *not* have a newline
     /// byte (the 0xA byte) at the end.
-    ///
-    /// This function will yield errors whenever `read_string` would have also
-    /// yielded an error.
     #[stable(feature = "rust1", since = "1.0.0")]
     fn lines(self) -> Lines<Self> where Self: Sized {
         Lines { buf: self }