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