]> git.lizzy.rs Git - rust.git/commitdiff
doc: missed these in a4da9ac
authorTshepang Lekhonkhobe <tshepang@gmail.com>
Wed, 30 Dec 2015 19:01:42 +0000 (21:01 +0200)
committerTshepang Lekhonkhobe <tshepang@gmail.com>
Wed, 30 Dec 2015 19:01:42 +0000 (21:01 +0200)
src/libstd/io/stdio.rs

index 863e84be093d2d011fdcb717c9896c382f615a38..79091fd3d6b9d07bd227f935d4d541d2dec67e25 100644 (file)
@@ -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()) }