Skip to content

Commit 8469bad

Browse files
Fix some command short descriptions (#470)
Tidy up command short descriptions for consistency with other commands.
1 parent d231ee0 commit 8469bad

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

cmd/init.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import (
1111

1212
var initCmd = &cobra.Command{
1313
Use: "init <file>",
14-
Short: "Initializes pgroll, creating the required pg_roll schema to store state",
14+
Short: "Initialize pgroll in the target database",
1515
RunE: func(cmd *cobra.Command, args []string) error {
1616
m, err := NewRoll(cmd.Context())
1717
if err != nil {

cmd/pull.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ func pullCmd() *cobra.Command {
1919

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

0 commit comments

Comments
 (0)