Skip to content

Commit

Permalink
fix typo rwlock.rs
Browse files Browse the repository at this point in the history
Hi. Fixed typo: contained -> content
  • Loading branch information
bmusin committed Jan 10, 2018
1 parent 107e65e commit d0d5db6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/libstd/sync/rwlock.rs
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 d0d5db6

Please sign in to comment.