From 389c25c287e94ba08157dab5e4ce3665da3a44df Mon Sep 17 00:00:00 2001 From: Michael Angerman <1809991+stormasm@users.noreply.github.com> Date: Wed, 18 Jun 2025 21:34:19 -0700 Subject: [PATCH] chore: Fix spelling of the word masked (#990) --- crates/macros/src/derive_into_plot.rs | 2 +- crates/story/src/label_story.rs | 2 +- crates/ui/src/time/calendar.rs | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) 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))