Skip to content

Commit

Permalink
formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
chris-ha458 committed Oct 4, 2023
1 parent 7810602 commit f9ec33f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -64,4 +64,4 @@ path = "src/normalizer.rs"

[profile.release]
opt-level = 3
lto = "fat"
lto = "fat"
2 changes: 1 addition & 1 deletion src/md.rs
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ impl MessDetectorPlugin for TooManyAccentuatedPlugin {
fn feed(&mut self, character: char) {
self.character_count += 1;
if is_accentuated(character) {
self.accentuated_count += 1
self.accentuated_count += 1;
}
}
fn ratio(&self) -> f32 {
Expand Down

0 comments on commit f9ec33f

Please sign in to comment.