Skip to content
This repository has been archived by the owner on Sep 9, 2020. It is now read-only.

Commit

Permalink
Fix style issue where scale cmd helped ended with fullstop.
Browse files Browse the repository at this point in the history
  • Loading branch information
jrasell committed Sep 15, 2019
1 parent 4dea6cd commit 5ac2eb9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion cmd/scale/in/command.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import (
func RegisterCommand(rootCmd *cobra.Command) error {
cmd := &cobra.Command{
Use: "in",
Short: "Perform scaling in actions on Nomad jobs and groups.",
Short: "Perform scaling in actions on Nomad jobs and groups",
Run: func(cmd *cobra.Command, args []string) {
runIn(cmd, args)
},
Expand Down
2 changes: 1 addition & 1 deletion cmd/scale/out/command.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import (
func RegisterCommand(rootCmd *cobra.Command) error {
cmd := &cobra.Command{
Use: "out",
Short: "Perform scaling out actions on Nomad jobs and groups.",
Short: "Perform scaling out actions on Nomad jobs and groups",
Run: func(cmd *cobra.Command, args []string) {
runOut(cmd, args)
},
Expand Down

0 comments on commit 5ac2eb9

Please sign in to comment.