aboutsummaryrefslogtreecommitdiff
path: root/embassy-sync/src
diff options
context:
space:
mode:
Diffstat (limited to 'embassy-sync/src')
-rw-r--r--embassy-sync/src/blocking_rwlock/raw.rs3
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.
4use core::{cell::RefCell, marker::PhantomData}; 4use core::cell::RefCell;
5use core::marker::PhantomData;
5 6
6/// Raw read-write lock trait. 7/// Raw read-write lock trait.
7/// 8///