Merge pull request #4719 from oscr/remove-dot-from-short

Remove dots from short descriptions
This commit is contained in:
Kubernetes Prow Robot
2022-08-30 09:54:55 -07:00
committed by GitHub
15 changed files with 15 additions and 15 deletions

View File

@@ -11,7 +11,7 @@ import (
func GetCfg(name string) *cobra.Command {
cmd := &cobra.Command{
Use: "cfg",
Short: "Commands for reading and writing configuration.",
Short: "Commands for reading and writing configuration",
}
cmd.AddCommand(commands.AnnotateCommand(name))

View File

@@ -11,7 +11,7 @@ import (
func GetFn(name string) *cobra.Command {
cmd := &cobra.Command{
Use: "fn",
Short: "Commands for running functions against configuration.",
Short: "Commands for running functions against configuration",
}
cmd.AddCommand(commands.RunCommand(name))