Skip to content

Commit

Permalink
Run cargo fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
margual56 committed Sep 27, 2023
1 parent 926de0f commit 118d9f1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src-tauri/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ pub fn format_money(amount: f32) -> String {
if amount == 0.0 {
// This is to avoid the whole "- 0.0" debacle, because of floating
// point precision.
"0.00 €".to_string()
"0.00 €".to_string()
} else {
format!("{:+.2} €", amount)
}
Expand Down

0 comments on commit 118d9f1

Please sign in to comment.