Skip to content

Commit ae5ac0c

Browse files
committed
refactor: Remove unneeded brackets
1 parent 384f021 commit ae5ac0c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ pub mod error;
3636

3737
#[cfg(all(feature = "std", feature = "lender"))]
3838
lazy_static! {
39-
static ref LENT: RwLock<HashSet<usize>> = { RwLock::new(HashSet::new()) };
39+
static ref LENT: RwLock<HashSet<usize>> = RwLock::new(HashSet::new());
4040
}
4141

4242
#[cfg(all(feature = "std", feature = "lender"))]

0 commit comments

Comments
 (0)