Skip to content

Commit

Permalink
Fix some command short descriptions (#470)
Browse files Browse the repository at this point in the history
Tidy up command short descriptions for consistency with other commands.
  • Loading branch information
andrew-farries authored Nov 19, 2024
1 parent d231ee0 commit 8469bad
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion cmd/init.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import (

var initCmd = &cobra.Command{
Use: "init <file>",
Short: "Initializes pgroll, creating the required pg_roll schema to store state",
Short: "Initialize pgroll in the target database",
RunE: func(cmd *cobra.Command, args []string) error {
m, err := NewRoll(cmd.Context())
if err != nil {
Expand Down
2 changes: 1 addition & 1 deletion cmd/pull.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ func pullCmd() *cobra.Command {

pullCmd := &cobra.Command{
Use: "pull <target directory>",
Short: "pull migration history from the target database and write it to disk",
Short: "Pull migration history from the target database and write it to disk",
Args: cobra.ExactArgs(1),
RunE: func(cmd *cobra.Command, args []string) error {
ctx := cmd.Context()
Expand Down

0 comments on commit 8469bad

Please sign in to comment.