Skip to content

Commit

Permalink
Fix typos in Options
Browse files Browse the repository at this point in the history
  • Loading branch information
n10v committed May 24, 2017
1 parent 060e463 commit 2081063
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions option.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,15 @@ package main
import "regexp"

type Options struct {
Byfile bool `long:"by-file" description:"report results for every source file encountered."`
Byfile bool `long:"by-file" description:"report results for every encountered source file"`
SortTag string `long:"sort" default:"code" description:"sort based on a certain column"`
OutputType string `long:"output-type" default:"default" description:"output type [values: default,cloc-xml,sloccount]"`
ExcludeExt string `long:"exclude-ext" description:"exclude file name extensions (separated commas)"`
IncludeLang string `long:"include-lang" description:"include language name (separated commas)"`
MatchDir string `long:"match-d" description:"include dir name (regex)"`
NotMatchDir string `long:"not-match-d" description:"exclude dir name (regex)"`
Debug bool `long:"debug" description:"dump debug log for developer"`
SkipUniqueness bool `long:"skip-uniqueness" description:"skip uniqueness files"`
SkipDuplicated bool `long:"skip-duplicated" description:"skip duplicated files"`
ShowLang bool `long:"show-lang" description:"print about all languages and extensions"`
}

Expand Down

0 comments on commit 2081063

Please sign in to comment.