Skip to content

Commit

Permalink
Rollup merge of rust-lang#64378 - Rosto75:master, r=jonas-schievink
Browse files Browse the repository at this point in the history
Fix inconsistent link formatting.
  • Loading branch information
Centril committed Sep 13, 2019
2 parents 1059ddd + a8c5f90 commit f4ec1f0
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/libstd/io/stdio.rs
Original file line number Diff line number Diff line change
Expand Up @@ -201,9 +201,9 @@ pub struct StdinLock<'a> {
///
/// Each handle returned is a reference to a shared global buffer whose access
/// is synchronized via a mutex. If you need more explicit control over
/// locking, see the [`lock() method`][lock].
/// locking, see the [`Stdin::lock`] method.
///
/// [lock]: struct.Stdin.html#method.lock
/// [`Stdin::lock`]: struct.Stdin.html#method.lock
///
/// ### Note: Windows Portability Consideration
/// When operating in a console, the Windows implementation of this stream does not support
Expand Down Expand Up @@ -425,9 +425,9 @@ pub struct StdoutLock<'a> {
///
/// Each handle returned is a reference to a shared global buffer whose access
/// is synchronized via a mutex. If you need more explicit control over
/// locking, see the [Stdout::lock] method.
/// locking, see the [`Stdout::lock`] method.
///
/// [Stdout::lock]: struct.Stdout.html#method.lock
/// [`Stdout::lock`]: struct.Stdout.html#method.lock
///
/// ### Note: Windows Portability Consideration
/// When operating in a console, the Windows implementation of this stream does not support
Expand Down

0 comments on commit f4ec1f0

Please sign in to comment.