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