Codebase list golang-github-vbauerster-mpb / 8593d7e
Correct misspell in comments Vladimir Bauer 9 years ago
2 changed file(s) with 3 addition(s) and 3 deletion(s). Raw diff Collapse all Expand all
2929 inProgress chan struct{}
3030 cancel <-chan struct{}
3131
32 // follawing are used after (*Bar.done) is closed
32 // following are used after (*Bar.done) is closed
3333 width int
3434 state state
3535 }
6868 stopReqCh chan struct{}
6969 uncompletedBarStopReqCh chan struct{}
7070
71 // follawing is used after (*Progress.done) is closed
71 // following is used after (*Progress.done) is closed
7272 conf userConf
7373 }
7474
212212 case <-p.done:
213213 return
214214 default:
215 // complet Total unknown bars
215 // complete Total unknown bars
216216 p.uncompletedBarStopReqCh <- struct{}{}
217217 // wait for all bars to quit
218218 p.wg.Wait()