From 8a568aeef00cb811a732894c7b55a7c3c31b242b Mon Sep 17 00:00:00 2001 From: Mica White Date: Mon, 11 Mar 2024 16:49:18 -0400 Subject: Top level docs --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'README.md') 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 = Mutex::new(0); -- cgit v1.2.3