diff options
| author | Mica White <botahamec@outlook.com> | 2024-03-11 16:49:18 -0400 |
|---|---|---|
| committer | Mica White <botahamec@outlook.com> | 2024-03-11 16:49:18 -0400 |
| commit | 8a568aeef00cb811a732894c7b55a7c3c31b242b (patch) | |
| tree | 6d24b474518a271b2cbaeb3da9e871c12e1017a6 /README.md | |
| parent | 462fc2d9aab8f0cba680caec344e4c388e9901b1 (diff) | |
Top level docs
Diffstat (limited to 'README.md')
| -rw-r--r-- | README.md | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -41,7 +41,7 @@ println!("{}", *data); Unlocking a mutex requires a `ThreadKey` or a mutable reference to `ThreadKey`. Each thread will be allowed to have one key at a time, but no more than that. The `ThreadKey` type is not cloneable or copyable. This means that only one thing can be locked at a time. -To lock multiple mutexes at a time, create a `LockSequence` or `LockCollection`. +To lock multiple mutexes at a time, create a `LockCollection`. ```rust static DATA_1: Mutex<i32> = Mutex::new(0); |
