chore: Fix spelling of the word masked (#990)

This commit is contained in:
Michael Angerman 2025-06-18 21:34:19 -07:00 committed by GitHub
parent d7e04ecdd0
commit 389c25c287
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 3 additions and 3 deletions

View file

@ -1,6 +1,6 @@
use proc_macro::TokenStream; use proc_macro::TokenStream;
use quote::quote; use quote::quote;
use syn::{DeriveInput, parse_macro_input}; use syn::{parse_macro_input, DeriveInput};
pub fn derive_into_plot(input: TokenStream) -> TokenStream { pub fn derive_into_plot(input: TokenStream) -> TokenStream {
let ast = parse_macro_input!(input as DeriveInput); let ast = parse_macro_input!(input as DeriveInput);

View file

@ -100,7 +100,7 @@ impl Render for LabelStory {
), ),
) )
.child( .child(
section("Maksed Label").max_w_md().child( section("Masked Label").max_w_md().child(
v_flex() v_flex()
.w_full() .w_full()
.gap_4() .gap_4()

View file

@ -196,7 +196,7 @@ impl From<Vec<u32>> for Matcher {
impl<F> From<F> for Matcher impl<F> From<F> for Matcher
where where
F: Fn(&NaiveDate) -> bool + Send + Sync +'static, F: Fn(&NaiveDate) -> bool + Send + Sync + 'static,
{ {
fn from(f: F) -> Self { fn from(f: F) -> Self {
Matcher::Custom(Box::new(f)) Matcher::Custom(Box::new(f))