Merge pull request #1781 from bugadani/typo

Fix typo
This commit is contained in:
Dario Nieuwenhuis 2023-08-15 17:24:28 +00:00 committed by GitHub
commit 96e0ace89e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -11,7 +11,7 @@ use core::marker::PhantomData;
/// ///
/// Note that, unlike other mutexes, implementations only guarantee no /// Note that, unlike other mutexes, implementations only guarantee no
/// concurrent access from other threads: concurrent access from the current /// concurrent access from other threads: concurrent access from the current
/// thread is allwed. For example, it's possible to lock the same mutex multiple times reentrantly. /// thread is allowed. For example, it's possible to lock the same mutex multiple times reentrantly.
/// ///
/// Therefore, locking a `RawMutex` is only enough to guarantee safe shared (`&`) access /// Therefore, locking a `RawMutex` is only enough to guarantee safe shared (`&`) access
/// to the data, it is not enough to guarantee exclusive (`&mut`) access. /// to the data, it is not enough to guarantee exclusive (`&mut`) access.