Codebase list golang-github-vbauerster-mpb / 6957c2f
minor: godoc Vladimir Bauer 3 years ago
1 changed file(s) with 1 addition(s) and 1 deletion(s). Raw diff Collapse all Expand all
111111 return p.New(total, SpinnerStyle(), options...)
112112 }
113113
114 // New creates a bar with provided BarFillerBuilder.
114 // New creates a bar by calling `Build` method on provided `BarFillerBuilder`.
115115 func (p *Progress) New(total int64, builder BarFillerBuilder, options ...BarOption) *Bar {
116116 return p.AddFiller(total, builder.Build(), options...)
117117 }