Fix typo in mutex.rs docs

This seems to match other uses of "be accessed" in the document.
This commit is contained in:
ScottAbbey 2017-03-17 13:27:13 -05:00 committed by GitHub
parent 9fae0405e9
commit ec8ecf4f9d
1 changed files with 1 additions and 1 deletions

View File

@ -132,7 +132,7 @@ unsafe impl<T: ?Sized + Send> Sync for Mutex<T> { }
/// An RAII implementation of a "scoped lock" of a mutex. When this structure is
/// dropped (falls out of scope), the lock will be unlocked.
///
/// The data protected by the mutex can be access through this guard via its
/// The data protected by the mutex can be accessed through this guard via its
/// [`Deref`] and [`DerefMut`] implementations.
///
/// This structure is created by the [`lock()`] and [`try_lock()`] methods on