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

Fix style issue where scale cmd helped ended with fullstop. #39

Merged
merged 1 commit into from
Sep 15, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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