Skip to content

Commit

Permalink
Rollup merge of rust-lang#47310 - bmusin:patch-1, r=sfackler
Browse files Browse the repository at this point in the history
fix typo rwlock.rs

Hi. Fixed typo: contained -> content
  • Loading branch information
kennytm committed Jan 11, 2018
2 parents b95f18f + d0d5db6 commit 2f43a2b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/libstd/sync/rwlock.rs
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ use sys_common::rwlock as sys;
/// required that `T` satisfies [`Send`] to be shared across threads and
/// [`Sync`] to allow concurrent access through readers. The RAII guards
/// returned from the locking methods implement [`Deref`][] (and [`DerefMut`]
/// for the `write` methods) to allow access to the contained of the lock.
/// for the `write` methods) to allow access to the content of the lock.
///
/// # Poisoning
///
Expand Down

0 comments on commit 2f43a2b

Please sign in to comment.