Auto merge of #30648 - tshepang:missing-graves, r=steveklabnik

This commit is contained in:
bors 2016-01-01 00:38:43 +00:00
commit bfb4212ee2

View 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()) }