diff --git a/command/pr_checkout.go b/command/pr_checkout.go index 5db8fbd07..d237aefbb 100644 --- a/command/pr_checkout.go +++ b/command/pr_checkout.go @@ -123,7 +123,7 @@ var prCheckoutCmd = &cobra.Command{ Short: "Check out a pull request in Git", Args: func(cmd *cobra.Command, args []string) error { if len(args) < 1 { - return errors.New("requires a PR number as an argument") + return errors.New("requires a pull request number as an argument") } return nil }, diff --git a/command/repo.go b/command/repo.go index 4f8c51e0b..8efda0595 100644 --- a/command/repo.go +++ b/command/repo.go @@ -51,7 +51,7 @@ A repository can be supplied as an argument in any of the following formats: } var repoCloneCmd = &cobra.Command{ - Use: "clone []", + Use: "clone []", Args: cobra.MinimumNArgs(1), Short: "Clone a repository locally", Long: `Clone a GitHub repository locally.