summary refs log tree commit diff
path: root/src/libstd/io
diff options
context:
space:
mode:
authorTaiki Endo <te316e89@gmail.com>2019-05-04 23:48:57 +0900
committerTaiki Endo <te316e89@gmail.com>2019-05-04 23:48:57 +0900
commitccb9dac5ed65341bf8d9ce01a83b9aad02f42526 (patch)
tree8148c29c67cf4418b404cfc43f913179e399939c /src/libstd/io
parentef9a876f8297e26859469b004047e0946ed10565 (diff)
downloadrust-ccb9dac5ed65341bf8d9ce01a83b9aad02f42526.tar.gz
rust-ccb9dac5ed65341bf8d9ce01a83b9aad02f42526.zip
Fix intra-doc link resolution failure on re-exporting libstd
Diffstat (limited to 'src/libstd/io')
-rw-r--r--src/libstd/io/buffered.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstd/io/buffered.rs b/src/libstd/io/buffered.rs
index 5be2687d8f5..e309f81192c 100644
--- a/src/libstd/io/buffered.rs
+++ b/src/libstd/io/buffered.rs
@@ -754,7 +754,7 @@ impl<W> fmt::Display for IntoInnerError<W> {
 /// completed, rather than the entire buffer at once. Enter `LineWriter`. It
 /// does exactly that.
 ///
-/// Like [`BufWriter`], a `LineWriter`’s buffer will also be flushed when the
+/// Like [`BufWriter`][bufwriter], a `LineWriter`’s buffer will also be flushed when the
 /// `LineWriter` goes out of scope or when its internal buffer is full.
 ///
 /// [bufwriter]: struct.BufWriter.html