We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8fcc5bd commit 6e86c63Copy full SHA for 6e86c63
src/libstd/io/mod.rs
@@ -618,9 +618,6 @@ pub trait BufRead: Read {
618
/// The iterator returned from this function will yield instances of
619
/// `io::Result<String>`. Each string returned will *not* have a newline
620
/// byte (the 0xA byte) at the end.
621
- ///
622
- /// This function will yield errors whenever `read_string` would have also
623
- /// yielded an error.
624
#[stable(feature = "rust1", since = "1.0.0")]
625
fn lines(self) -> Lines<Self> where Self: Sized {
626
Lines { buf: self }
0 commit comments