Skip to content

Commit

Permalink
Fix typo in comment. (#41)
Browse files Browse the repository at this point in the history
  • Loading branch information
jsvisa authored and dmitshur committed Jun 23, 2016
1 parent 499693e commit fef948f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion comma.go
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ func Comma(v int64) string {
// Commaf produces a string form of the given number in base 10 with
// commas after every three orders of magnitude.
//
// e.g. Comma(834142.32) -> 834,142.32
// e.g. Commaf(834142.32) -> 834,142.32
func Commaf(v float64) string {
buf := &bytes.Buffer{}
if v < 0 {
Expand Down

0 comments on commit fef948f

Please sign in to comment.