🚨 A bunch of small improvements from linter

This commit is contained in:
Dan Jones 2025-03-19 18:05:16 -05:00
commit 8f02956ecd
10 changed files with 51 additions and 47 deletions

View file

@ -11,7 +11,7 @@ type incConf struct {
cb func(int) string
}
// IncrementalOption sets an option for the Incremental Generator
// IncrementalOption sets an option for the Incremental Generator.
type IncrementalOption func(c *incConf)
// Incremental generates a name that is a series of integers.
@ -30,7 +30,7 @@ func Incremental(opts ...IncrementalOption) Generator {
}
}
// IncrementalStart sets the starting integer for Incremental
// IncrementalStart sets the starting integer for Incremental.
func IncrementalStart(start int) IncrementalOption {
return func(c *incConf) {
c.start = start
@ -45,7 +45,7 @@ func IncrementalStep(step int) IncrementalOption {
}
// IncrementalFormatsets the format for the number generated by Incremental.
// It will be formatted with Printf. This is mostly likely useful with a format like "%02d"
// It will be formatted with Printf. This is mostly likely useful with a format like "%02d".
func IncrementalFormat(format string) IncrementalOption {
return func(c *incConf) {
c.cb = func(i int) string {