about summary refs log tree commit diff
diff options
context:
space:
mode:
authorManish Goregaokar <manishsmail@gmail.com>2015-05-11 19:58:56 +0530
committerManish Goregaokar <manishsmail@gmail.com>2015-05-11 19:58:56 +0530
commitc8913752984b9b5d0501e29f28582fdb0902680b (patch)
treea9ba712354757cf305d87744ceab5756f6f36b4b
parent8004fc9fe0591f9537c0f6e993234eb86989c538 (diff)
parent685f557729e3bb2691a81ac10074bddf4f61a0b6 (diff)
downloadrust-c8913752984b9b5d0501e29f28582fdb0902680b.tar.gz
rust-c8913752984b9b5d0501e29f28582fdb0902680b.zip
Rollup merge of #25280 - frewsxcv:patch-22, r=steveklabnik
-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 9089b417fcb..e7b2b01d09f 100644
--- a/src/libstd/io/mod.rs
+++ b/src/libstd/io/mod.rs
@@ -844,7 +844,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,
@@ -873,7 +873,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,