Remove unnecessary space in front of non-positive number
This commit is contained in:
parent
8f4c4b829e
commit
212dba11c8
1 changed files with 1 additions and 1 deletions
|
@ -118,7 +118,7 @@ sub string_flipped($self, $sep = " ") {
|
||||||
return sprintf(
|
return sprintf(
|
||||||
"%s%s%d.%02d",
|
"%s%s%d.%02d",
|
||||||
$$self > 0 ? "+" : "",
|
$$self > 0 ? "+" : "",
|
||||||
$sep,
|
$$self > 0 ? $sep : "",
|
||||||
abs($$self) / 100,
|
abs($$self) / 100,
|
||||||
abs($$self) % 100,
|
abs($$self) % 100,
|
||||||
);
|
);
|
||||||
|
|
Loading…
Add table
Reference in a new issue