Skip to content

Commit

Permalink
fix cargo fmt error
Browse files Browse the repository at this point in the history
  • Loading branch information
wugeer committed Sep 17, 2024
1 parent 67f102d commit 73ae619
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/formatter.rs
Original file line number Diff line number Diff line change
Expand Up @@ -188,11 +188,11 @@ impl<'a> Formatter<'a> {
}
if self.options.uppercase
&& !self
.options
.ignore_case_convert
.as_ref()
.map(|values| values.contains(&token.value))
.unwrap_or(false)
.options
.ignore_case_convert
.as_ref()
.map(|values| values.contains(&token.value))
.unwrap_or(false)
{
query.push_str(&token.value.to_uppercase());
} else {
Expand Down

0 comments on commit 73ae619

Please sign in to comment.