Experiment running gofmt on Godeps

This commit is contained in:
Frederick F. Kautz IV 2015-04-29 13:30:14 -07:00
parent 8689ec9a54
commit 9001d87d20

View File

@ -33,7 +33,7 @@ func Comma(v int64) string {
j-- j--
} }
parts[j] = strconv.Itoa(int(v)) parts[j] = strconv.Itoa(int(v))
return sign + strings.Join(parts[j:len(parts)], ",") return sign + strings.Join(parts[j:], ",")
} }
// Commaf produces a string form of the given number in base 10 with // Commaf produces a string form of the given number in base 10 with
@ -97,5 +97,5 @@ func BigComma(b *big.Int) string {
j-- j--
} }
parts[j] = strconv.Itoa(int(b.Int64())) parts[j] = strconv.Itoa(int(b.Int64()))
return sign + strings.Join(parts[j:len(parts)], ",") return sign + strings.Join(parts[j:], ",")
} }