Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,3 +15,4 @@ All of the following primitives are provided in both sync and unsync versions:
- BiLock
- Flag (specialized `AtomicBool`)
- Event (`event-listener` and `local-event`)
- Async Flag
4 changes: 2 additions & 2 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ pub mod sync {

#[doc(inline)]
#[cfg(feature = "async_flag")]
pub use crate::async_flag::sync as notify;
pub use crate::async_flag::sync as async_flag;
#[doc(inline)]
#[cfg(feature = "bilock")]
pub use crate::bilock::sync as bilock;
Expand Down Expand Up @@ -95,7 +95,7 @@ pub mod unsync {

#[doc(inline)]
#[cfg(feature = "async_flag")]
pub use crate::async_flag::unsync as notify;
pub use crate::async_flag::unsync as async_flag;
#[doc(inline)]
#[cfg(feature = "bilock")]
pub use crate::bilock::unsync as bilock;
Expand Down