diff options
author | Ben Johnson <benbjohnson@yahoo.com> | 2017-01-30 08:30:26 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-01-30 08:30:26 -0700 |
commit | 9145e047707a32d3685f15d9fd97e1b25445ba1b (patch) | |
tree | 5007e6a84df480be216015e74f56776092afc17a | |
parent | Merge pull request #642 from josharian/fix629 (diff) | |
parent | hexidecimal -> hexadecimal (diff) | |
download | dedo-9145e047707a32d3685f15d9fd97e1b25445ba1b.tar.gz dedo-9145e047707a32d3685f15d9fd97e1b25445ba1b.tar.xz |
Merge pull request #651 from zweizeichen/master
hexidecimal -> hexadecimal
-rw-r--r-- | cmd/bolt/main.go | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/cmd/bolt/main.go b/cmd/bolt/main.go index 29e393f..057eca5 100644 --- a/cmd/bolt/main.go +++ b/cmd/bolt/main.go @@ -359,7 +359,7 @@ func (cmd *DumpCommand) Run(args ...string) error { return nil } -// PrintPage prints a given page as hexidecimal. +// PrintPage prints a given page as hexadecimal. func (cmd *DumpCommand) PrintPage(w io.Writer, r io.ReaderAt, pageID int, pageSize int) error { const bytesPerLineN = 16 @@ -409,7 +409,7 @@ func (cmd *DumpCommand) Usage() string { return strings.TrimLeft(` usage: bolt dump -page PAGEID PATH -Dump prints a hexidecimal dump of a single page. +Dump prints a hexadecimal dump of a single page. `, "\n") } @@ -596,7 +596,7 @@ func (cmd *PageCommand) PrintFreelist(w io.Writer, buf []byte) error { return nil } -// PrintPage prints a given page as hexidecimal. +// PrintPage prints a given page as hexadecimal. func (cmd *PageCommand) PrintPage(w io.Writer, r io.ReaderAt, pageID int, pageSize int) error { const bytesPerLineN = 16 |