diff --git a/crates/macros/src/derive_into_plot.rs b/crates/macros/src/derive_into_plot.rs index 425b0a2d..850556d1 100644 --- a/crates/macros/src/derive_into_plot.rs +++ b/crates/macros/src/derive_into_plot.rs @@ -1,6 +1,6 @@ use proc_macro::TokenStream; use quote::quote; -use syn::{DeriveInput, parse_macro_input}; +use syn::{parse_macro_input, DeriveInput}; pub fn derive_into_plot(input: TokenStream) -> TokenStream { let ast = parse_macro_input!(input as DeriveInput); diff --git a/crates/story/src/label_story.rs b/crates/story/src/label_story.rs index d8a70f23..d2d06c8e 100644 --- a/crates/story/src/label_story.rs +++ b/crates/story/src/label_story.rs @@ -100,7 +100,7 @@ impl Render for LabelStory { ), ) .child( - section("Maksed Label").max_w_md().child( + section("Masked Label").max_w_md().child( v_flex() .w_full() .gap_4() diff --git a/crates/ui/src/time/calendar.rs b/crates/ui/src/time/calendar.rs index 1be2bef4..57255720 100644 --- a/crates/ui/src/time/calendar.rs +++ b/crates/ui/src/time/calendar.rs @@ -196,7 +196,7 @@ impl From> for Matcher { impl From for Matcher where - F: Fn(&NaiveDate) -> bool + Send + Sync +'static, + F: Fn(&NaiveDate) -> bool + Send + Sync + 'static, { fn from(f: F) -> Self { Matcher::Custom(Box::new(f))