1
0
mirror of https://github.com/duke-git/lancet.git synced 2026-02-11 08:12:26 +08:00

fix: update logic of Percent function

This commit is contained in:
dudaodong
2023-05-18 10:11:48 +08:00
parent cd91e16b26
commit f05477d9cf
5 changed files with 29 additions and 19 deletions

View File

@@ -60,7 +60,7 @@ func Percent(val, total float64, n int) float64 {
if total == 0 {
return float64(0)
}
tmp := val / total
tmp := val / total * 100
result := RoundToFloat(tmp, n)
return result