Skip to content

Commit

Permalink
add some comments
Browse files Browse the repository at this point in the history
  • Loading branch information
mhewedy committed May 2, 2020
1 parent dd87dd8 commit 5fb3946
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/progress.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
)

func PrintProgress(title string) *chan bool {
quit := make(chan bool, 10)
quit := make(chan bool, 10) // 10 is arbitrary number, we need a buffered channel in order not to lock the sender!
i := 0
go func() {
for {
Expand Down

0 comments on commit 5fb3946

Please sign in to comment.