From b4299090c3e503ba0c49a6086b1a46c218ca45f4 Mon Sep 17 00:00:00 2001 From: "Joe Richey joerichey@google.com" Date: Thu, 12 Oct 2017 17:59:45 -0700 Subject: Command, Context, command line splitting setup --- cmd/output.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'cmd/output.go') diff --git a/cmd/output.go b/cmd/output.go index 024705d..c3a79a4 100644 --- a/cmd/output.go +++ b/cmd/output.go @@ -51,7 +51,7 @@ var ( // HelpFlag writes help to Stdout HelpFlag = &BoolFlag{ Name: "help", - Usage: "Prints this 🧗help text for commands and subcommands", + Usage: "Prints this help text for commands and subcommands", } // VerboseFlag indicates that all logging output should be printed. VerboseFlag = &BoolFlag{ @@ -101,7 +101,7 @@ func wrapText(text string, numTabs int) string { spaceLeft := 0 maxTextLen := LineLength - numTabs*TabWidth delimiter := strings.Repeat("\t", numTabs) - for i, word := range strings.Fields(text) { + for _, word := range strings.Fields(text) { wordLen := utf8.RuneCountInString(word) if wordLen >= spaceLeft { // If no room left, write the word on the next line. -- cgit v1.2.3