diff --git a/progress/progress.go b/progress/progress.go index 3ebdd1d..d5a4c5a 100644 --- a/progress/progress.go +++ b/progress/progress.go @@ -79,8 +79,8 @@ func WithSolidFill(color string) Option { } } -// WithCustomFillCharacters sets the characters used to construct the full and empty components of the progress bar. -func WithCustomFillCharacters(full rune, empty rune) Option { +// WithFillCharacters sets the characters used to construct the full and empty components of the progress bar. +func WithFillCharacters(full rune, empty rune) Option { return func(m *Model) { m.Full = full m.Empty = empty