Remove dots from short descriptions

This commit is contained in:
Oscar Utbult
2022-07-22 17:16:43 +02:00
parent 2f2ba40876
commit d96e47cc38
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))