diff options
Diffstat (limited to 'vendor/github.com/dustin/go-humanize/number.go')
-rw-r--r-- | vendor/github.com/dustin/go-humanize/number.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vendor/github.com/dustin/go-humanize/number.go b/vendor/github.com/dustin/go-humanize/number.go index dec61865..6470d0d4 100644 --- a/vendor/github.com/dustin/go-humanize/number.go +++ b/vendor/github.com/dustin/go-humanize/number.go @@ -73,7 +73,7 @@ func FormatFloat(format string, n float64) string { if n > math.MaxFloat64 { return "Infinity" } - if n < -math.MaxFloat64 { + if n < (0.0 - math.MaxFloat64) { return "-Infinity" } |