Skip to content

Commit

Permalink
doc(tls/custom): correct flag descriptions (#1116)
Browse files Browse the repository at this point in the history
  • Loading branch information
kpfleming committed Jan 12, 2024
1 parent 76671b2 commit 680e9aa
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pkg/commands/tls/custom/privatekey/create.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import (
// NewCreateCommand returns a usable command registered under the parent.
func NewCreateCommand(parent argparser.Registerer, g *global.Data) *CreateCommand {
var c CreateCommand
c.CmdClause = parent.Command("create", "Create a TLS certificate").Alias("add")
c.CmdClause = parent.Command("create", "Create a TLS private key").Alias("add")
c.Globals = g

// Required.
Expand Down
2 changes: 1 addition & 1 deletion pkg/commands/tls/custom/privatekey/root.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ type RootCommand struct {
func NewRootCommand(parent argparser.Registerer, globals *global.Data) *RootCommand {
var c RootCommand
c.Globals = globals
c.CmdClause = parent.Command("private-key", "Upload and manage private keys used to sign a Certificate")
c.CmdClause = parent.Command("private-key", "Upload and manage private keys used to sign certificates")
return &c
}

Expand Down

0 comments on commit 680e9aa

Please sign in to comment.