Skip to content

Commit

Permalink
Update library/std/src/sync/rwlock.rs
Browse files Browse the repository at this point in the history
Co-authored-by: Steven Fackler <sfackler@gmail.com>
  • Loading branch information
matklad and sfackler committed Feb 27, 2021
1 parent d94b4e8 commit 261c952
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion library/std/src/sync/rwlock.rs
Expand Up @@ -24,7 +24,7 @@ use crate::sys_common::rwlock as sys;
/// The priority policy of the lock is dependent on the underlying operating
/// system's implementation, and this type does not guarantee that any
/// particular policy will be used. In particular, a writer which is waiting to
/// acquire the lock in `write` might or might not block future calls to
/// acquire the lock in `write` might or might not block concurrent calls to
/// `read`.
///
/// The type parameter `T` represents the data that this lock protects. It is
Expand Down

0 comments on commit 261c952

Please sign in to comment.