Skip to content

Commit 45acf30

Browse files
committed
Fix lint
1 parent 629ad44 commit 45acf30

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

libs/sheet/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -561,7 +561,7 @@ impl StyleSheet {
561561
_base_styles.iter().for_each(|prop| {
562562
base_styles
563563
.entry(*prop.0)
564-
.or_insert_with(|| HashSet::new())
564+
.or_insert_with(HashSet::new)
565565
.extend(prop.1.clone());
566566
});
567567
}

0 commit comments

Comments
 (0)