Skip to content

Commit

Permalink
Rename sync::sync to sync::blocking
Browse files Browse the repository at this point in the history
  • Loading branch information
SabrinaJewson committed Jun 15, 2022
1 parent 435ab07 commit c83af0b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
File renamed without changes.
4 changes: 2 additions & 2 deletions src/sync/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@
#[cfg(feature = "__async")]
mod futures;
#[cfg(feature = "__sync")]
mod sync;
mod blocking;

#[cfg(feature = "__async")]
use self::futures as imp;
#[cfg(feature = "__sync")]
use self::sync as imp;
use self::blocking as imp;

/// A type alias for either an asynchronous mutex or [`std::sync::Mutex`], depending on whether
/// this library is compiled in asynchronous or synchronous mode.
Expand Down

0 comments on commit c83af0b

Please sign in to comment.