Skip to content

Commit

Permalink
Replace bolt with bbolt in command line usage (#235)
Browse files Browse the repository at this point in the history
The bbolt command line tool was renamed after the fork, but its usage output still used the old name.
  • Loading branch information
mndrix committed Apr 24, 2021
1 parent 1d7842a commit 615d5f6
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions cmd/bbolt/main.go
Expand Up @@ -136,18 +136,18 @@ func (m *Main) Run(args ...string) error {
// Usage returns the help message.
func (m *Main) Usage() string {
return strings.TrimLeft(`
Bolt is a tool for inspecting bolt databases.
Bbolt is a tool for inspecting bbolt databases.
Usage:
bolt command [arguments]
bbolt command [arguments]
The commands are:
bench run synthetic benchmark against bolt
bench run synthetic benchmark against bbolt
buckets print a list of buckets
check verifies integrity of bolt database
compact copies a bolt database, compacting it in the process
check verifies integrity of bbolt database
compact copies a bbolt database, compacting it in the process
dump print a hexadecimal dump of a single page
get print the value of a key in a bucket
info print basic info
Expand All @@ -158,7 +158,7 @@ The commands are:
page-item print the key and value of a page item.
stats iterate over all pages and generate usage stats
Use "bolt [command] -h" for more information about a command.
Use "bbolt [command] -h" for more information about a command.
`, "\n")
}

Expand Down

0 comments on commit 615d5f6

Please sign in to comment.