aboutsummaryrefslogtreecommitdiff
path: root/embassy-sync/src/blocking_mutex/mod.rs
diff options
context:
space:
mode:
authorRobin Mueller <[email protected]>2025-09-23 13:55:55 +0200
committerRobin Mueller <[email protected]>2025-09-23 13:55:55 +0200
commit99febbe3a42ac05b723e6e76088d159eb0acfa5e (patch)
treec27843242e930cd6d15cdb7e3456d83df4671430 /embassy-sync/src/blocking_mutex/mod.rs
parentde5dd10a5832b330465d93399b3a9cb761e24029 (diff)
more docs fixes
Diffstat (limited to 'embassy-sync/src/blocking_mutex/mod.rs')
-rw-r--r--embassy-sync/src/blocking_mutex/mod.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/embassy-sync/src/blocking_mutex/mod.rs b/embassy-sync/src/blocking_mutex/mod.rs
index 11809c763..62bfc26fb 100644
--- a/embassy-sync/src/blocking_mutex/mod.rs
+++ b/embassy-sync/src/blocking_mutex/mod.rs
@@ -135,9 +135,9 @@ impl<T> Mutex<raw::NoopRawMutex, T> {
135// There's still a ThreadModeRawMutex for use with the generic Mutex (handy with Channel, for example), 135// There's still a ThreadModeRawMutex for use with the generic Mutex (handy with Channel, for example),
136// but that will require T: Send even though it shouldn't be needed. 136// but that will require T: Send even though it shouldn't be needed.
137 137
138#[cfg(any(cortex_m, feature = "std"))] 138#[cfg(any(cortex_m, doc, feature = "std"))]
139pub use thread_mode_mutex::*; 139pub use thread_mode_mutex::*;
140#[cfg(any(cortex_m, feature = "std"))] 140#[cfg(any(cortex_m, doc, feature = "std"))]
141mod thread_mode_mutex { 141mod thread_mode_mutex {
142 use super::*; 142 use super::*;
143 143