vendor: upgrade grpc-gateway to v1.3.0, dustin/go-humanize
Signed-off-by: Gyu-Ho Lee <gyuhox@gmail.com>
This commit is contained in:
2
cmd/vendor/github.com/dustin/go-humanize/number.go
generated
vendored
2
cmd/vendor/github.com/dustin/go-humanize/number.go
generated
vendored
@ -160,7 +160,7 @@ func FormatFloat(format string, n float64) string {
|
||||
intf, fracf := math.Modf(n + renderFloatPrecisionRounders[precision])
|
||||
|
||||
// generate integer part string
|
||||
intStr := strconv.Itoa(int(intf))
|
||||
intStr := strconv.FormatInt(int64(intf), 10)
|
||||
|
||||
// add thousand separator if required
|
||||
if len(thousandStr) > 0 {
|
||||
|
Reference in New Issue
Block a user