mirror of
https://github.com/pgsty/minio.git
synced 2026-07-25 15:06:17 +03:00
Merge pull request #534 from fkautz/pr_out_experiment_running_gofmt_on_godeps
This commit is contained in:
+2
-2
@@ -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:], ",")
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user