Skip to content

Commit

Permalink
🚨 resolve pedantic lint
Browse files Browse the repository at this point in the history
  • Loading branch information
ttytm committed Nov 1, 2024
1 parent 526f396 commit b605555
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/modules/display/utils.rs
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ pub fn style_number(mut num: i32, sub: bool) -> String {
power_of_ten /= 10;
if digit != 0 || started {
started = true;
result.push(digits[digit as usize])
result.push(digits[digit as usize]);
}
}

Expand Down

0 comments on commit b605555

Please sign in to comment.