Skip to content

Commit

Permalink
Merge pull request cli#754 from cli/long-from
Browse files Browse the repository at this point in the history
spell out PR text
  • Loading branch information
mislav authored Apr 7, 2020
2 parents e878cdf + 1aba837 commit c0c2862
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion command/pr_checkout.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
},
Expand Down
2 changes: 1 addition & 1 deletion command/repo.go
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ A repository can be supplied as an argument in any of the following formats:
}

var repoCloneCmd = &cobra.Command{
Use: "clone <repo> [<directory>]",
Use: "clone <repository> [<directory>]",
Args: cobra.MinimumNArgs(1),
Short: "Clone a repository locally",
Long: `Clone a GitHub repository locally.
Expand Down

0 comments on commit c0c2862

Please sign in to comment.