summary refs log tree commit diff
path: root/src/libstd/io
diff options
context:
space:
mode:
authorSteve Klabnik <steve@steveklabnik.com>2015-05-13 03:01:37 -0400
committerSteve Klabnik <steve@steveklabnik.com>2015-05-13 03:01:37 -0400
commitf0213d8ffb128a16f94af7ee985dc61484596163 (patch)
tree1d980684aff4c7e04b34dc0d7d386c0c0a7ceac4 /src/libstd/io
parent6e2106d37673ea9f7112c19887f6c3a60850122a (diff)
parent98fef7b8f2472c745ad4eaa0cbde020ac0e8f93e (diff)
downloadrust-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.rs4
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,