From 99657750cc781e41c9c1e3be6b6316c18fc430bd Mon Sep 17 00:00:00 2001 From: joeybloggs Date: Fri, 12 Aug 2016 22:03:24 -0400 Subject: ad variable grouping logic + cleanup generated code newlines --- ses_ML/ses_ML.go | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'ses_ML/ses_ML.go') diff --git a/ses_ML/ses_ML.go b/ses_ML/ses_ML.go index 9a94c821..86f5dffb 100644 --- a/ses_ML/ses_ML.go +++ b/ses_ML/ses_ML.go @@ -1,6 +1,7 @@ package ses_ML import ( + "math" "strconv" "github.com/go-playground/locales" @@ -68,8 +69,6 @@ func (ses *ses_ML) RangePluralRule(num1 float64, v1 uint64, num2 float64, v2 uin // avoid allocations; otherwise just cast as string. func (ses *ses_ML) 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) - } -- cgit v1.2.3