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
path: root/om/om.go
diff options
context:
space:
mode:
Diffstat (limited to 'om/om.go')
-rw-r--r--om/om.go4
1 files changed, 1 insertions, 3 deletions
diff --git a/om/om.go b/om/om.go
index 3e0b740b..702b1e52 100644
--- a/om/om.go
+++ b/om/om.go
@@ -76,8 +76,6 @@ func (om *om) RangePluralRule(num1 float64, v1 uint64, num2 float64, v2 uint64)
// avoid allocations; otherwise just cast as string.
func (om *om) 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)
-
}