diff options
| author | Alix ANNERAUD <[email protected]> | 2025-02-28 23:30:01 +0100 |
|---|---|---|
| committer | Alix ANNERAUD <[email protected]> | 2025-02-28 23:30:01 +0100 |
| commit | 10fd6d13213b88c50cab77cbbbb1d81bdaa5b391 (patch) | |
| tree | 334849f2311fdd1f5c2aa6a8bf4cfb21ae26d0d3 /embassy-sync/src/blocking_rwlock | |
| parent | f2afcecfa8cb07df8903412e5eed602c4447e4a8 (diff) | |
Refactor imports in raw read-write lock module for clarity
Diffstat (limited to 'embassy-sync/src/blocking_rwlock')
| -rw-r--r-- | embassy-sync/src/blocking_rwlock/raw.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/embassy-sync/src/blocking_rwlock/raw.rs b/embassy-sync/src/blocking_rwlock/raw.rs index dc25e6305..91fa773c4 100644 --- a/embassy-sync/src/blocking_rwlock/raw.rs +++ b/embassy-sync/src/blocking_rwlock/raw.rs | |||
| @@ -1,7 +1,8 @@ | |||
| 1 | //! Read-Write Lock primitives. | 1 | //! Read-Write Lock primitives. |
| 2 | //! | 2 | //! |
| 3 | //! This module provides a trait for read-write locks that can be used in different contexts. | 3 | //! This module provides a trait for read-write locks that can be used in different contexts. |
| 4 | use core::{cell::RefCell, marker::PhantomData}; | 4 | use core::cell::RefCell; |
| 5 | use core::marker::PhantomData; | ||
| 5 | 6 | ||
| 6 | /// Raw read-write lock trait. | 7 | /// Raw read-write lock trait. |
| 7 | /// | 8 | /// |
