Skip to content

Commit

Permalink
Fix model as string
Browse files Browse the repository at this point in the history
  • Loading branch information
Mroik committed May 9, 2024
1 parent 0ba2d4e commit eb03eb4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/fitch.rs
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ impl Display for Fitch {
}

res.push(' ');
let mut temp = i as i32;
let mut temp = if i == 0 { 1 } else { i as i32 };
let mut white = 0;
while temp > 0 {
temp = temp / 10;
Expand Down

0 comments on commit eb03eb4

Please sign in to comment.