Skip to content

Commit

Permalink
Rollup merge of rust-lang#33459 - frewsxcv:patch-29, r=guillaumegomez
Browse files Browse the repository at this point in the history
Indicate struct names are code-like in doc-comment.
  • Loading branch information
GuillaumeGomez committed May 7, 2016
2 parents 77f0163 + 40025e8 commit c5595da
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/libstd/sync/rwlock.rs
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,8 @@ use sys_common::rwlock as sys;
///
/// # Poisoning
///
/// RwLocks, like Mutexes, will become poisoned on panics. Note, however, that
/// an RwLock may only be poisoned if a panic occurs while it is locked
/// An `RwLock`, like `Mutex`, will become poisoned on a panic. Note, however,
/// that an `RwLock` may only be poisoned if a panic occurs while it is locked
/// exclusively (write mode). If a panic occurs in any reader, then the lock
/// will not be poisoned.
///
Expand Down

0 comments on commit c5595da

Please sign in to comment.