Code reformat.

This commit is contained in:
Oleksandr Kozachuk
2022-12-12 13:28:06 +01:00
parent 72cb38929b
commit a291aafcf9
6 changed files with 33 additions and 14 deletions
+1 -1
View File
@@ -82,7 +82,7 @@ impl fmt::Display for Radix {
let mut used = 0;
let negative = x < 0;
if negative {
x*=-1;
x *= -1;
}
let mut x = x as u32;
loop {