From 5ac2eb96c72cd1043c160838c7b2f986b2d45837 Mon Sep 17 00:00:00 2001 From: James Rasell Date: Sun, 15 Sep 2019 11:01:16 +0200 Subject: [PATCH] Fix style issue where scale cmd helped ended with fullstop. --- cmd/scale/in/command.go | 2 +- cmd/scale/out/command.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/cmd/scale/in/command.go b/cmd/scale/in/command.go index 17c3785..ad03506 100644 --- a/cmd/scale/in/command.go +++ b/cmd/scale/in/command.go @@ -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) }, diff --git a/cmd/scale/out/command.go b/cmd/scale/out/command.go index b27ce24..2678799 100644 --- a/cmd/scale/out/command.go +++ b/cmd/scale/out/command.go @@ -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) },