We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent efb5a9a commit c779e7bCopy full SHA for c779e7b
src/libstd/io/stdio.rs
@@ -231,8 +231,8 @@ impl Stdin {
231
/// returned guard also implements the [`Read`] and [`BufRead`] traits for
232
/// accessing the underlying data.
233
///
234
- /// [Read]: trait.Read.html
235
- /// [BufRead]: trait.BufRead.html
+ /// [`Read`]: trait.Read.html
+ /// [`BufRead`]: trait.BufRead.html
236
#[stable(feature = "rust1", since = "1.0.0")]
237
pub fn lock(&self) -> StdinLock {
238
StdinLock { inner: self.inner.lock().unwrap_or_else(|e| e.into_inner()) }
0 commit comments