1
Fork 0

Rollup merge of #47310 - bmusin:patch-1, r=sfackler

fix typo rwlock.rs

Hi. Fixed typo: contained -> content
This commit is contained in:
kennytm 2018-01-13 02:26:34 +08:00 committed by GitHub
commit 426036b517

View file

@ -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
///