about summary refs log tree commit diff
diff options
context:
space:
mode:
authorSteve Klabnik <steve@steveklabnik.com>2015-07-27 22:25:06 -0400
committerSteve Klabnik <steve@steveklabnik.com>2015-07-27 22:25:06 -0400
commit54d05f3cefea13b4025e3c4058153784a06fbb57 (patch)
tree68e7bb9a4b30133355b80dfa3817b78f3e40233d
parentd019a49ac86322703e1daad0ebca393856185b32 (diff)
downloadrust-54d05f3cefea13b4025e3c4058153784a06fbb57.tar.gz
rust-54d05f3cefea13b4025e3c4058153784a06fbb57.zip
fix two links
How embarassing :sob:
-rw-r--r--src/libstd/io/util.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libstd/io/util.rs b/src/libstd/io/util.rs
index dc29811ed5b..6e651464c74 100644
--- a/src/libstd/io/util.rs
+++ b/src/libstd/io/util.rs
@@ -105,7 +105,7 @@ impl BufRead for Empty {
 /// This struct is generally created by calling [`repeat()`][repeat]. Please
 /// see the documentation of `repeat()` for more details.
 ///
-/// [empty]: fn.repeat.html
+/// [repeat]: fn.repeat.html
 #[stable(feature = "rust1", since = "1.0.0")]
 pub struct Repeat { byte: u8 }
 
@@ -131,7 +131,7 @@ impl Read for Repeat {
 /// This struct is generally created by calling [`sink()`][sink]. Please
 /// see the documentation of `sink()` for more details.
 ///
-/// [empty]: fn.sink.html
+/// [sink]: fn.sink.html
 #[stable(feature = "rust1", since = "1.0.0")]
 pub struct Sink { _priv: () }