Skip to content

Commit

Permalink
💬 Tweak subcommand descriptions
Browse files Browse the repository at this point in the history
  • Loading branch information
gabe565 committed Mar 10, 2022
1 parent 08353dc commit f9c6e19
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion cmd/dump/dump.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ import (
var Command = &cobra.Command{
Use: "dump",
Aliases: []string{"d"},
Short: "Dump a database",
Short: "dump a database to a sql file",
PreRunE: preRun,
RunE: run,
}
Expand Down
2 changes: 1 addition & 1 deletion cmd/exec/exec.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import (
var Command = &cobra.Command{
Use: "exec",
Aliases: []string{"e", "shell"},
Short: "Connect to an interactive shell",
Short: "connect to an interactive shell",
RunE: run,
PreRunE: preRun,
}
Expand Down
2 changes: 1 addition & 1 deletion cmd/restore/restore.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ import (
var Command = &cobra.Command{
Use: "restore",
Aliases: []string{"r"},
Short: "Restore a database",
Short: "restore a database from a sql file",
Args: cobra.ExactArgs(1),
PreRunE: preRun,
RunE: run,
Expand Down

0 comments on commit f9c6e19

Please sign in to comment.