This commit is contained in:
2025-02-12 22:42:01 +09:00
parent e3a1b1f4fe
commit f5d23e9a07

View File

@@ -35,7 +35,7 @@ local function format_n(n)
for letter, limit in pairs(suffix_list) do
if math.abs(n) >= limit then
n = string.format("%.1f", n / limit)
n = string.format("%.2f", n / limit)
suffix = letter
break
end