Skip to content

Commit c0c2862

Browse files
authored
Merge pull request cli#754 from cli/long-from
spell out PR text
2 parents e878cdf + 1aba837 commit c0c2862

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

command/pr_checkout.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ var prCheckoutCmd = &cobra.Command{
123123
Short: "Check out a pull request in Git",
124124
Args: func(cmd *cobra.Command, args []string) error {
125125
if len(args) < 1 {
126-
return errors.New("requires a PR number as an argument")
126+
return errors.New("requires a pull request number as an argument")
127127
}
128128
return nil
129129
},

command/repo.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ A repository can be supplied as an argument in any of the following formats:
5151
}
5252

5353
var repoCloneCmd = &cobra.Command{
54-
Use: "clone <repo> [<directory>]",
54+
Use: "clone <repository> [<directory>]",
5555
Args: cobra.MinimumNArgs(1),
5656
Short: "Clone a repository locally",
5757
Long: `Clone a GitHub repository locally.

0 commit comments

Comments
 (0)