Update embassy-sync/src/mutex.rs

Co-authored-by: James Munns <james@onevariable.com>
This commit is contained in:
Robin Mueller 2025-07-09 14:26:20 +02:00 committed by GitHub
parent 42c8379c5a
commit da392ed942
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -23,7 +23,7 @@ struct State {
/// Async mutex.
///
/// The mutex is generic over a blocking [RawMutex].
/// The mutex is generic over a blocking [`RawMutex`].
/// The raw mutex is used to guard access to the internal "is locked" flag. It
/// is held for very short periods only, while locking and unlocking. It is *not* held
/// for the entire time the async Mutex is locked.