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()