diff --git a/progress.go b/progress.go index 94f02fd..11461c0 100644 --- a/progress.go +++ b/progress.go @@ -112,7 +112,7 @@ return p.New(total, SpinnerStyle(), options...) } -// New creates a bar with provided BarFillerBuilder. +// New creates a bar by calling `Build` method on provided `BarFillerBuilder`. func (p *Progress) New(total int64, builder BarFillerBuilder, options ...BarOption) *Bar { return p.AddFiller(total, builder.Build(), options...) }