Codebase list golang-github-vbauerster-mpb / a8965f9
Misspell fixes Vladimir Bauer 8 years ago
2 changed file(s) with 2 addition(s) and 2 deletion(s). Raw diff Collapse all Expand all
8484 }
8585
8686 // BarReplaceOnComplete is indicator for delayed bar start, after the `runningBar` is complete.
87 // To achive bar replacement effect, `runningBar` should has its `BarRemoveOnComplete` option set.
87 // To achieve bar replacement effect, `runningBar` should has its `BarRemoveOnComplete` option set.
8888 func BarReplaceOnComplete(runningBar *Bar) BarOption {
8989 return func(s *bState) {
9090 s.runningBar = runningBar
1313 var wg sync.WaitGroup
1414 p := mpb.New(mpb.WithWaitGroup(&wg), mpb.WithDebugOutput(os.Stderr))
1515
16 wantPanic := "Some realy long panic panic panic panic panic panic panic, really it is very long"
16 wantPanic := "Some really long panic panic panic panic panic panic panic, really it is very long"
1717 numBars := 3
1818 wg.Add(numBars)
1919