Skip to content
This repository was archived by the owner on Mar 4, 2025. It is now read-only.

Commit 4fbe6c6

Browse files
committed
commit: display database size with thousands separator
1 parent 9a18108 commit 4fbe6c6

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

cmd/commit.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -335,7 +335,7 @@ func commit(args []string) error {
335335
return err
336336
}
337337
}
338-
_, err = fmt.Fprintf(fOut, " Size: %d bytes\n", e.Size)
338+
_, err = numFormat.Fprintf(fOut, " Size: %d bytes\n", e.Size)
339339
if err != nil {
340340
return err
341341
}

0 commit comments

Comments
 (0)