punctuate consistently

This commit is contained in:
Kenneth Bingham 2025-01-28 15:08:08 -05:00
parent 9b067d2266
commit a1f72c061b
No known key found for this signature in database
GPG Key ID: 31709281860130B6
2 changed files with 2 additions and 2 deletions

View File

@ -18,7 +18,7 @@ func newConfigGetCommand() *configGetCommand {
cmd := &cobra.Command{
Use: "get <configName>",
Short: "Get a value from the environment config",
Long: "Get a value from the environment config. Use 'zrok status' to list available configuration names and current values",
Long: "Get a value from the environment config. Use 'zrok status' to list available configuration names and current values.",
Args: cobra.ExactArgs(1),
}
command := &configGetCommand{cmd: cmd}

View File

@ -22,7 +22,7 @@ func newConfigSetCommand() *configSetCommand {
cmd := &cobra.Command{
Use: "set <configName> <value>",
Short: "Set a value into the environment config",
Long: "Set a value into the environment config. Use 'zrok status' to list available configuration names and current values",
Long: "Set a value into the environment config. Use 'zrok status' to list available configuration names and current values.",
Args: cobra.ExactArgs(2),
}
command := &configSetCommand{cmd: cmd}