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 'so_SO/so_SO.go')
-rw-r--r--so_SO/so_SO.go4
1 files changed, 1 insertions, 3 deletions
diff --git a/so_SO/so_SO.go b/so_SO/so_SO.go
index d48a1a36..6af55a3a 100644
--- a/so_SO/so_SO.go
+++ b/so_SO/so_SO.go
@@ -76,8 +76,6 @@ func (so *so_SO) RangePluralRule(num1 float64, v1 uint64, num2 float64, v2 uint6
// avoid allocations; otherwise just cast as string.
func (so *so_SO) 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)
-
}