summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorMica White <botahamec@outlook.com>2024-03-11 16:49:18 -0400
committerMica White <botahamec@outlook.com>2024-03-11 16:49:18 -0400
commit8a568aeef00cb811a732894c7b55a7c3c31b242b (patch)
tree6d24b474518a271b2cbaeb3da9e871c12e1017a6 /README.md
parent462fc2d9aab8f0cba680caec344e4c388e9901b1 (diff)
Top level docs
Diffstat (limited to 'README.md')
-rw-r--r--README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/README.md b/README.md
index 787bea6..9be263c 100644
--- a/README.md
+++ b/README.md
@@ -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);