diff options
| author | Steve Klabnik <steve@steveklabnik.com> | 2015-05-13 03:01:37 -0400 |
|---|---|---|
| committer | Steve Klabnik <steve@steveklabnik.com> | 2015-05-13 03:01:37 -0400 |
| commit | f0213d8ffb128a16f94af7ee985dc61484596163 (patch) | |
| tree | 1d980684aff4c7e04b34dc0d7d386c0c0a7ceac4 /src/libstd/io | |
| parent | 6e2106d37673ea9f7112c19887f6c3a60850122a (diff) | |
| parent | 98fef7b8f2472c745ad4eaa0cbde020ac0e8f93e (diff) | |
| download | rust-f0213d8ffb128a16f94af7ee985dc61484596163.tar.gz rust-f0213d8ffb128a16f94af7ee985dc61484596163.zip | |
Merge pull request #25361 from steveklabnik/final_backport
Final backport
Diffstat (limited to 'src/libstd/io')
| -rw-r--r-- | src/libstd/io/mod.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libstd/io/mod.rs b/src/libstd/io/mod.rs index 07b43b6c5db..209c052ae06 100644 --- a/src/libstd/io/mod.rs +++ b/src/libstd/io/mod.rs @@ -845,7 +845,7 @@ impl fmt::Display for CharsError { /// An iterator over the contents of an instance of `BufRead` split on a /// particular byte. /// -/// See `BufReadExt::split` for more information. +/// See `BufRead::split` for more information. #[stable(feature = "rust1", since = "1.0.0")] pub struct Split<B> { buf: B, @@ -874,7 +874,7 @@ impl<B: BufRead> Iterator for Split<B> { /// An iterator over the lines of an instance of `BufRead` split on a newline /// byte. /// -/// See `BufReadExt::lines` for more information. +/// See `BufRead::lines` for more information. #[stable(feature = "rust1", since = "1.0.0")] pub struct Lines<B> { buf: B, |
