Skip to content
This repository was archived by the owner on Feb 20, 2019. It is now read-only.

Commit 9145e04

Browse files
authored
Merge pull request boltdb#651 from zweizeichen/master
hexidecimal -> hexadecimal
2 parents a705895 + 4660afd commit 9145e04

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

cmd/bolt/main.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -359,7 +359,7 @@ func (cmd *DumpCommand) Run(args ...string) error {
359359
return nil
360360
}
361361

362-
// PrintPage prints a given page as hexidecimal.
362+
// PrintPage prints a given page as hexadecimal.
363363
func (cmd *DumpCommand) PrintPage(w io.Writer, r io.ReaderAt, pageID int, pageSize int) error {
364364
const bytesPerLineN = 16
365365

@@ -409,7 +409,7 @@ func (cmd *DumpCommand) Usage() string {
409409
return strings.TrimLeft(`
410410
usage: bolt dump -page PAGEID PATH
411411
412-
Dump prints a hexidecimal dump of a single page.
412+
Dump prints a hexadecimal dump of a single page.
413413
`, "\n")
414414
}
415415

@@ -596,7 +596,7 @@ func (cmd *PageCommand) PrintFreelist(w io.Writer, buf []byte) error {
596596
return nil
597597
}
598598

599-
// PrintPage prints a given page as hexidecimal.
599+
// PrintPage prints a given page as hexadecimal.
600600
func (cmd *PageCommand) PrintPage(w io.Writer, r io.ReaderAt, pageID int, pageSize int) error {
601601
const bytesPerLineN = 16
602602

0 commit comments

Comments
 (0)