Skip to content

Commit 4e65d8f

Browse files
clavinjuneahrtr
authored andcommitted
fix: typo in printing message
Signed-off-by: clavinjune <24659468+clavinjune@users.noreply.github.com>
1 parent 55b03d4 commit 4e65d8f

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

cmd/bbolt/command/command_page.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ func printPages(cmd *cobra.Command, pageIDs []uint64, path string, formatValue s
7171
}
7272
_, pErr := printPage(cmd, path, pageID, formatValue)
7373
if pErr != nil {
74-
fmt.Fprintf(cmd.OutOrStdout(), "Prining page %d failed: %s. Continuing...\n", pageID, pErr)
74+
fmt.Fprintf(cmd.OutOrStdout(), "Printing page %d failed: %s. Continuing...\n", pageID, pErr)
7575
}
7676
}
7777
}
@@ -128,7 +128,7 @@ func printAllPages(cmd *cobra.Command, path string, formatValue string) {
128128
}
129129
overflow, pErr := printPage(cmd, path, pageID, formatValue)
130130
if pErr != nil {
131-
fmt.Fprintf(cmd.OutOrStdout(), "Prining page %d failed: %s. Continuing...\n", pageID, pErr)
131+
fmt.Fprintf(cmd.OutOrStdout(), "Printing page %d failed: %s. Continuing...\n", pageID, pErr)
132132
pageID++
133133
} else {
134134
pageID += uint64(overflow) + 1

0 commit comments

Comments
 (0)