Skip to content

Commit

Permalink
chore(term): fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
ymgyt committed Apr 14, 2024
1 parent 5d49d7f commit a70475e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions crates/synd_term/src/ui/components/filter.rs
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ pub struct FeedFilter {
impl Default for FeedFilter {
fn default() -> Self {
Self {
requirement: Filter::INTIAL_REQUIREMENT,
requirement: Filter::INITIAL_REQUIREMENT,
}
}
}
Expand Down Expand Up @@ -70,11 +70,11 @@ struct CategoryState {
}

impl Filter {
const INTIAL_REQUIREMENT: Requirement = Requirement::May;
const INITIAL_REQUIREMENT: Requirement = Requirement::May;

pub fn new() -> Self {
Self {
requirement: Self::INTIAL_REQUIREMENT,
requirement: Self::INITIAL_REQUIREMENT,
categories: Vec::new(),
categoris_state: HashMap::new(),
}
Expand Down

0 comments on commit a70475e

Please sign in to comment.