diff options
| author | Robin Mueller <[email protected]> | 2025-09-23 13:55:55 +0200 |
|---|---|---|
| committer | Robin Mueller <[email protected]> | 2025-09-23 13:55:55 +0200 |
| commit | 99febbe3a42ac05b723e6e76088d159eb0acfa5e (patch) | |
| tree | c27843242e930cd6d15cdb7e3456d83df4671430 /embassy-sync/src/blocking_mutex/mod.rs | |
| parent | de5dd10a5832b330465d93399b3a9cb761e24029 (diff) | |
more docs fixes
Diffstat (limited to 'embassy-sync/src/blocking_mutex/mod.rs')
| -rw-r--r-- | embassy-sync/src/blocking_mutex/mod.rs | 4 |
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"))] |
| 139 | pub use thread_mode_mutex::*; | 139 | pub use thread_mode_mutex::*; |
| 140 | #[cfg(any(cortex_m, feature = "std"))] | 140 | #[cfg(any(cortex_m, doc, feature = "std"))] |
| 141 | mod thread_mode_mutex { | 141 | mod thread_mode_mutex { |
| 142 | use super::*; | 142 | use super::*; |
| 143 | 143 | ||
