mirror of
https://github.com/git-chglog/git-chglog.git
synced 2026-01-23 02:15:12 +00:00
refactor: Fix typo
This commit is contained in:
parent
d55318c7a0
commit
5599878683
3 changed files with 3 additions and 3 deletions
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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()),
|
||||
))
|
||||
|
|
|
|||
|
|
@ -34,7 +34,7 @@ var (
|
|||
}
|
||||
|
||||
tplStandard = "standard"
|
||||
tplCool = "rich"
|
||||
tplCool = "cool"
|
||||
templateStyles = []string{
|
||||
tplStandard,
|
||||
tplCool,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue