about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2016-01-01 00:38:43 +0000
committerbors <bors@rust-lang.org>2016-01-01 00:38:43 +0000
commitbfb4212ee2ae658dfd4feb5991ebff55e9ac5240 (patch)
treedbd529fd69ad5cf219c7b7bf559c5cde71c38871 /src
parent9c53c9234b8be004bde9c42618ae8c80ca686d0c (diff)
parentc779e7b7829af2faf2324c64db3add34312c7f4b (diff)
downloadrust-bfb4212ee2ae658dfd4feb5991ebff55e9ac5240.tar.gz
rust-bfb4212ee2ae658dfd4feb5991ebff55e9ac5240.zip
Auto merge of #30648 - tshepang:missing-graves, r=steveklabnik
Diffstat (limited to 'src')
-rw-r--r--src/libstd/io/stdio.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libstd/io/stdio.rs b/src/libstd/io/stdio.rs
index 863e84be093..79091fd3d6b 100644
--- a/src/libstd/io/stdio.rs
+++ b/src/libstd/io/stdio.rs
@@ -231,8 +231,8 @@ impl Stdin {
     /// returned guard also implements the [`Read`] and [`BufRead`] traits for
     /// accessing the underlying data.
     ///
-    /// [Read]: trait.Read.html
-    /// [BufRead]: trait.BufRead.html
+    /// [`Read`]: trait.Read.html
+    /// [`BufRead`]: trait.BufRead.html
     #[stable(feature = "rust1", since = "1.0.0")]
     pub fn lock(&self) -> StdinLock {
         StdinLock { inner: self.inner.lock().unwrap_or_else(|e| e.into_inner()) }