From 261c952ba66f130096edf530fae50bd0640e09e4 Mon Sep 17 00:00:00 2001 From: Aleksey Kladov Date: Sat, 27 Feb 2021 19:44:17 +0300 Subject: [PATCH] Update library/std/src/sync/rwlock.rs Co-authored-by: Steven Fackler --- library/std/src/sync/rwlock.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/std/src/sync/rwlock.rs b/library/std/src/sync/rwlock.rs index 4e706b27096..0298f59228c 100644 --- a/library/std/src/sync/rwlock.rs +++ b/library/std/src/sync/rwlock.rs @@ -24,7 +24,7 @@ /// 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 -- 2.44.0