Skip to content

Commit

Permalink
Use all-caps for metasyntactic arguments
Browse files Browse the repository at this point in the history
  • Loading branch information
johngmyers committed Jul 4, 2021
1 parent e345103 commit 75f3974
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion cmd/kops/create_keypair.go
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ func NewCmdCreateKeypair(f *util.Factory, out io.Writer) *cobra.Command {
options := &CreateKeypairOptions{}

cmd := &cobra.Command{
Use: "keypair keyset",
Use: "keypair KEYSET",
Short: createKeypairShort,
Long: createKeypairLong,
Example: createKeypairExample,
Expand Down
2 changes: 1 addition & 1 deletion cmd/kops/distrust_keypair.go
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ func NewCmdDistrustKeypair(f *util.Factory, out io.Writer) *cobra.Command {
options := &DistrustKeypairOptions{}

cmd := &cobra.Command{
Use: "keypair keyset [id]...",
Use: "keypair KEYSET [ID]...",
Short: distrustKeypairShort,
Long: distrustKeypairLong,
Example: distrustKeypairExample,
Expand Down
2 changes: 1 addition & 1 deletion cmd/kops/get_keypairs.go
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ func NewCmdGetKeypairs(f *util.Factory, out io.Writer, getOptions *GetOptions) *
GetOptions: getOptions,
}
cmd := &cobra.Command{
Use: "keypairs [keyset]...",
Use: "keypairs [KEYSET]...",
Aliases: []string{"keypair"},
Short: getKeypairShort,
Example: getKeypairExample,
Expand Down
2 changes: 1 addition & 1 deletion cmd/kops/promote_keypair.go
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ func NewCmdPromoteKeypair(f *util.Factory, out io.Writer) *cobra.Command {
options := &PromoteKeypairOptions{}

cmd := &cobra.Command{
Use: "keypair keyset [id]",
Use: "keypair KEYSET [ID]",
Short: promoteKeypairShort,
Long: promoteKeypairLong,
Example: promoteKeypairExample,
Expand Down
2 changes: 1 addition & 1 deletion docs/cli/kops_create_keypair.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion docs/cli/kops_distrust_keypair.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion docs/cli/kops_get_keypairs.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion docs/cli/kops_promote_keypair.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 75f3974

Please sign in to comment.