From 393e10e840a35089ae0496762fd8a72adbeb6ab6 Mon Sep 17 00:00:00 2001 From: guoguangwu Date: Fri, 18 Aug 2023 22:02:56 +0800 Subject: [PATCH] fix Continuing typo Signed-off-by: guoguangwu --- cmd/bbolt/page_command.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cmd/bbolt/page_command.go b/cmd/bbolt/page_command.go index c608d8460..7a6ec5b9b 100644 --- a/cmd/bbolt/page_command.go +++ b/cmd/bbolt/page_command.go @@ -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) } } } @@ -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