Skip to content

Commit d0d5db6

Browse files
authored
fix typo rwlock.rs
Hi. Fixed typo: contained -> content
1 parent 107e65e commit d0d5db6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/libstd/sync/rwlock.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ use sys_common::rwlock as sys;
3636
/// required that `T` satisfies [`Send`] to be shared across threads and
3737
/// [`Sync`] to allow concurrent access through readers. The RAII guards
3838
/// returned from the locking methods implement [`Deref`][] (and [`DerefMut`]
39-
/// for the `write` methods) to allow access to the contained of the lock.
39+
/// for the `write` methods) to allow access to the content of the lock.
4040
///
4141
/// # Poisoning
4242
///

0 commit comments

Comments
 (0)