From f0a968eada509f71971e3ece02f8ec91b6f79e8a Mon Sep 17 00:00:00 2001 From: Andreas Streichardt Date: Mon, 19 Feb 2018 17:19:30 +0100 Subject: [PATCH] Add missing link --- src/libstd/io/mod.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/libstd/io/mod.rs b/src/libstd/io/mod.rs index aa07f64b67859..d403bf6bfe53c 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