diff options
| author | Manish Goregaokar <manishsmail@gmail.com> | 2015-04-07 18:13:24 +0530 |
|---|---|---|
| committer | Manish Goregaokar <manishsmail@gmail.com> | 2015-04-07 18:13:24 +0530 |
| commit | b3bcbb1a22f6aa8c39055100b920904283fc8c2c (patch) | |
| tree | bf98143b0e0eea94d0e750c8b196d4f3759a5dd5 /src/libstd | |
| parent | 322e4a18e3a64745f761a072b311966567488f9d (diff) | |
| parent | 6e86c636e550cec54f51f1ce56a1f583dd37c90d (diff) | |
| download | rust-b3bcbb1a22f6aa8c39055100b920904283fc8c2c.tar.gz rust-b3bcbb1a22f6aa8c39055100b920904283fc8c2c.zip | |
Rollup merge of #24113 - mbrubeck:doc-edit, r=steveklabnik
* Fix broken \"module-level documentation\" link on the [`trait Any` docs](http://doc.rust-lang.org/std/any/trait.Any.html) and related broken markup on the [`std::any` docs](http://doc.rust-lang.org/std/any/index.html). * Remove an outdated or incorrect notice in the `BufRead::lines` docs. There is no such `read_string` function, and `lines` never returns an error. r? @steveklabnik
Diffstat (limited to 'src/libstd')
| -rw-r--r-- | src/libstd/io/mod.rs | 3 |
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 } |
