refactor: Fix typo

This commit is contained in:
tsuyoshiwada 2018-02-18 20:25:10 +09:00
parent d55318c7a0
commit 5599878683
3 changed files with 3 additions and 3 deletions

View file

@ -21,7 +21,7 @@ type Options struct {
CommitGroupSortBy string // Property name to use for sorting `CommitGroup` (e.g. `Title`)
CommitGroupTitleMaps map[string]string // Map for `CommitGroup` title conversion
HeaderPattern string // A regular expression to use for parsing the commit header
HeaderPatternMaps []string // A rule for mapping the result of `HeaderPattern` to the property of` Commit`
HeaderPatternMaps []string // A rule for mapping the result of `HeaderPattern` to the property of `Commit`
IssuePrefix []string // Prefix used for issues (e.g. `#`, `gh-`)
RefActions []string // Word list of `Ref.Action`
MergePattern string // A regular expression to use for parsing the merge commit

View file

@ -76,7 +76,7 @@ func (c *CLI) Run() int {
return ExitCodeError
}
c.logger.Log(fmt.Sprintf(":sparkles:Generate of %s is completed! (%s)",
c.logger.Log(fmt.Sprintf(":sparkles: Generate of %s is completed! (%s)",
color.GreenString("\""+c.ctx.OutputPath+"\""),
color.New(color.Bold).SprintFunc()(time.Since(start).String()),
))

View file

@ -34,7 +34,7 @@ var (
}
tplStandard = "standard"
tplCool = "rich"
tplCool = "cool"
templateStyles = []string{
tplStandard,
tplCool,