summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
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);