summaryrefslogtreecommitdiff
path: root/cmd/btrfs-rec/inspect_lstrees.go
diff options
context:
space:
mode:
authorLuke Shumaker <lukeshu@lukeshu.com>2023-01-05 17:42:21 -0700
committerLuke Shumaker <lukeshu@lukeshu.com>2023-01-05 19:47:37 -0700
commit62cbc80cf26fa2cdbfa0ad1c44190f554f960b9b (patch)
tree894bd28921cbc233031e0518e4675472045c60c6 /cmd/btrfs-rec/inspect_lstrees.go
parentaae33eace00bb463062226e7fb6a08ecf7f775be (diff)
cmd/btrfs-rec: Fix capitalization typo in comments
Diffstat (limited to 'cmd/btrfs-rec/inspect_lstrees.go')
-rw-r--r--cmd/btrfs-rec/inspect_lstrees.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/btrfs-rec/inspect_lstrees.go b/cmd/btrfs-rec/inspect_lstrees.go
index f74956a..69295f0 100644
--- a/cmd/btrfs-rec/inspect_lstrees.go
+++ b/cmd/btrfs-rec/inspect_lstrees.go
@@ -54,7 +54,7 @@ func init() {
}
numWidth := len(strconv.Itoa(slices.Max(treeErrCnt, totalItems)))
- table := tabwriter.NewWriter(os.Stdout, 0, 8, 2, ' ', 0) //nolint:gomnd // This is what looks Nice.
+ table := tabwriter.NewWriter(os.Stdout, 0, 8, 2, ' ', 0) //nolint:gomnd // This is what looks nice.
textui.Fprintf(table, " errors\t% *s\n", numWidth, strconv.Itoa(treeErrCnt))
for _, typ := range maps.SortedKeys(treeItemCnt) {
textui.Fprintf(table, " %v items\t% *s\n", typ, numWidth, strconv.Itoa(treeItemCnt[typ]))