Fixes spelling issues and import alphabetical issues

Using goreportcard.com I noticed a few spelling errors. I really love codegangsta/cli
and wanted to help improve it.
This commit is contained in:
adamclerk
2016-02-09 09:36:13 -07:00
parent 8cea2901d4
commit cde8418658
3 changed files with 6 additions and 6 deletions

View File

@@ -4,10 +4,10 @@ import (
"flag"
"fmt"
"os"
"runtime"
"strconv"
"strings"
"time"
"runtime"
)
// This flag enables bash-completion for all commands and subcommands
@@ -30,7 +30,7 @@ var HelpFlag = BoolFlag{
}
// Flag is a common interface related to parsing flags in cli.
// For more advanced flag parsing techniques, it is recomended that
// For more advanced flag parsing techniques, it is recommended that
// this interface be implemented.
type Flag interface {
fmt.Stringer