fix typo rwlock.rs

Hi. Fixed typo: contained -> content
This commit is contained in:
Bulat Musin
2018-01-10 08:03:10 +03:00
committed by GitHub
parent 107e65ec01
commit d0d5db65c7

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