about summary refs log tree commit diff
path: root/src/libstd/io
diff options
context:
space:
mode:
authorAndreas Streichardt <andreas.streichardt@gmail.com>2018-02-19 17:19:30 +0100
committerAndreas Streichardt <andreas.streichardt@gmail.com>2018-02-19 17:19:30 +0100
commitf0a968eada509f71971e3ece02f8ec91b6f79e8a (patch)
treecbb1c0b65bb7e15d5535d2e4e8222df167498522 /src/libstd/io
parent27a046e9338fb0455c33b13e8fe28da78212dedc (diff)
downloadrust-f0a968eada509f71971e3ece02f8ec91b6f79e8a.tar.gz
rust-f0a968eada509f71971e3ece02f8ec91b6f79e8a.zip
Add missing link
Diffstat (limited to 'src/libstd/io')
-rw-r--r--src/libstd/io/mod.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/libstd/io/mod.rs b/src/libstd/io/mod.rs
index aa07f64b678..d403bf6bfe5 100644
--- a/src/libstd/io/mod.rs
+++ b/src/libstd/io/mod.rs
@@ -1506,6 +1506,8 @@ pub trait BufRead: Read {
     /// error is encountered then `buf` may contain some bytes already read in
     /// the event that all data read so far was valid UTF-8.
     ///
+    /// [`read_until`]: #method.read_until
+    ///
     /// # Examples
     ///
     /// [`std::io::Cursor`][`Cursor`] is a type that implements `BufRead`. In