Skip to content

Commit

Permalink
fix Continuing typo
Browse files Browse the repository at this point in the history
Signed-off-by: guoguangwu <[email protected]>
  • Loading branch information
testwill committed Aug 18, 2023
1 parent 0e7d8a6 commit 393e10e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cmd/bbolt/page_command.go
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ func (cmd *pageCommand) printPages(pageIDs []uint64, path string, formatValue *s
}
_, err2 := cmd.printPage(path, pageID, *formatValue)
if err2 != nil {
fmt.Fprintf(cmd.Stdout, "Prining page %d failed: %s. Continuuing...\n", pageID, err2)
fmt.Fprintf(cmd.Stdout, "Prining page %d failed: %s. Continuing...\n", pageID, err2)
}
}
}
Expand All @@ -90,7 +90,7 @@ func (cmd *pageCommand) printAllPages(path string, formatValue *string) {
}
overflow, err2 := cmd.printPage(path, pageID, *formatValue)
if err2 != nil {
fmt.Fprintf(cmd.Stdout, "Prining page %d failed: %s. Continuuing...\n", pageID, err2)
fmt.Fprintf(cmd.Stdout, "Prining page %d failed: %s. Continuing...\n", pageID, err2)
pageID++
} else {
pageID += uint64(overflow) + 1
Expand Down

0 comments on commit 393e10e

Please sign in to comment.