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 'rw_RW/rw_RW.go')
-rw-r--r--rw_RW/rw_RW.go5
1 files changed, 2 insertions, 3 deletions
diff --git a/rw_RW/rw_RW.go b/rw_RW/rw_RW.go
index b37b2792..54b1b4c5 100644
--- a/rw_RW/rw_RW.go
+++ b/rw_RW/rw_RW.go
@@ -1,6 +1,7 @@
package rw_RW
import (
+ "math"
"strconv"
"github.com/go-playground/locales"
@@ -68,8 +69,6 @@ func (rw *rw_RW) RangePluralRule(num1 float64, v1 uint64, num2 float64, v2 uint6
// avoid allocations; otherwise just cast as string.
func (rw *rw_RW) 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)
-
}