Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/gohugoio/locales.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'shi_Tfng/shi_Tfng.go')
-rw-r--r--shi_Tfng/shi_Tfng.go4
1 files changed, 1 insertions, 3 deletions
diff --git a/shi_Tfng/shi_Tfng.go b/shi_Tfng/shi_Tfng.go
index 7017a131..ed413132 100644
--- a/shi_Tfng/shi_Tfng.go
+++ b/shi_Tfng/shi_Tfng.go
@@ -79,8 +79,6 @@ func (shi *shi_Tfng) RangePluralRule(num1 float64, v1 uint64, num2 float64, v2 u
// avoid allocations; otherwise just cast as string.
func (shi *shi_Tfng) FmtNumber(num float64, v uint64) []byte {
- s := strconv.FormatFloat(num, 'f', int(v), 64)
-
+ s := strconv.FormatFloat(math.Abs(num), 'f', int(v), 64)
return []byte(s)
-
}