We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 83af085 commit e224185Copy full SHA for e224185
library/std/src/sync/mutex.rs
@@ -10,7 +10,7 @@ use crate::sys_common::mutex as sys;
10
/// A mutual exclusion primitive useful for protecting shared data
11
///
12
/// This mutex will block threads waiting for the lock to become available. The
13
-/// mutex can created via a [`new`] constructor. Each mutex has a type parameter
+/// mutex can be created via a [`new`] constructor. Each mutex has a type parameter
14
/// which represents the data that it is protecting. The data can only be accessed
15
/// through the RAII guards returned from [`lock`] and [`try_lock`], which
16
/// guarantees that the data is only ever accessed when the mutex is locked.
0 commit comments