aboutsummaryrefslogtreecommitdiff
path: root/embassy-sync/src/mutex.rs
diff options
context:
space:
mode:
authorJames Munns <[email protected]>2025-07-09 12:54:27 +0000
committerGitHub <[email protected]>2025-07-09 12:54:27 +0000
commitba5aea8e6041675a0854b82fba79332608aa10c1 (patch)
tree7d38d70be875d2a8f06139e15268846379bf9d35 /embassy-sync/src/mutex.rs
parentc599435143e0fedb1be14f6f4cce559fa369feec (diff)
parentfa0f6bc670c29b799e0ef8812de041727c5d86f3 (diff)
Merge pull request #4385 from us-irs/some-minor-doc-fixes
some minor documentation fixes
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 7528a9f68..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`](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.