chore: Fix spelling of the word masked (#990)
This commit is contained in:
parent
d7e04ecdd0
commit
389c25c287
3 changed files with 3 additions and 3 deletions
|
|
@ -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);
|
||||||
|
|
|
||||||
|
|
@ -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()
|
||||||
|
|
|
||||||
|
|
@ -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))
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue