Skip to content

Commit e8bb17b

Browse files
authored
Rollup merge of rust-lang#47310 - bmusin:patch-1, r=sfackler
fix typo rwlock.rs Hi. Fixed typo: contained -> content
2 parents 505718d + d0d5db6 commit e8bb17b

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)