aboutsummaryrefslogtreecommitdiff
path: root/embassy-sync/src/mutex.rs
diff options
context:
space:
mode:
authorRobin Mueller <[email protected]>2025-07-09 14:26:20 +0200
committerGitHub <[email protected]>2025-07-09 14:26:20 +0200
commitda392ed942bbf78117f1dbba32208458de7cdea8 (patch)
tree00f01545a0f6e89a77a83216e3ed507c874a965b /embassy-sync/src/mutex.rs
parent42c8379c5a571aa76214cdd73ef05a2c720eeb6e (diff)
Update embassy-sync/src/mutex.rs
Co-authored-by: James Munns <[email protected]>
Diffstat (limited to 'embassy-sync/src/mutex.rs')
-rw-r--r--embassy-sync/src/mutex.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/embassy-sync/src/mutex.rs b/embassy-sync/src/mutex.rs
index 67c682704..8496f34bf 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]. 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.