diff options
| author | Robin Mueller <[email protected]> | 2025-07-09 14:21:19 +0200 |
|---|---|---|
| committer | Robin Mueller <[email protected]> | 2025-07-09 14:21:19 +0200 |
| commit | 42c8379c5a571aa76214cdd73ef05a2c720eeb6e (patch) | |
| tree | 08b99af66dc19f73ca0b2fae9f2835199d7bfe19 /embassy-sync/src/mutex.rs | |
| parent | ca667f124f20825a0624ae3d6ef3de9def033d90 (diff) | |
some minor documentation fixes
Diffstat (limited to 'embassy-sync/src/mutex.rs')
| -rw-r--r-- | embassy-sync/src/mutex.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/embassy-sync/src/mutex.rs b/embassy-sync/src/mutex.rs index 7528a9f68..67c682704 100644 --- a/embassy-sync/src/mutex.rs +++ b/embassy-sync/src/mutex.rs | |||
| @@ -23,7 +23,7 @@ struct State { | |||
| 23 | 23 | ||
| 24 | /// Async mutex. | 24 | /// Async mutex. |
| 25 | /// | 25 | /// |
| 26 | /// The mutex is generic over a blocking [`RawMutex`](crate::blocking_mutex::raw::RawMutex). | 26 | /// The mutex is generic over a blocking [RawMutex]. |
| 27 | /// The raw mutex is used to guard access to the internal "is locked" flag. It | 27 | /// The raw mutex is used to guard access to the internal "is locked" flag. It |
| 28 | /// is held for very short periods only, while locking and unlocking. It is *not* held | 28 | /// is held for very short periods only, while locking and unlocking. It is *not* held |
| 29 | /// for the entire time the async Mutex is locked. | 29 | /// for the entire time the async Mutex is locked. |
