Skip to content

Commit

Permalink
Rename WithCustomFillCharacters to WithFillCharacters
Browse files Browse the repository at this point in the history
  • Loading branch information
rwinkhart authored and meowgorithm committed Feb 6, 2024
1 parent 7fe3919 commit 350d5e9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions progress/progress.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 350d5e9

Please sign in to comment.