mirror of
https://github.com/rust-lang/rust.git
synced 2025-04-17 06:26:55 +00:00
Remove outdated notice from BufRead::lines docs.
There is no `read_string` function, and `lines` never returns an error.
This commit is contained in:
parent
8fcc5bd6a7
commit
6e86c636e5
@ -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 }
|
||||
|
Loading…
Reference in New Issue
Block a user