1
0
Fork 0
mirror of https://github.com/tmrts/go-patterns.git synced 2025-04-03 13:13:34 +03:00

fix generator pattern range issue

This commit is contained in:
Niranjan Godbole 2017-03-07 23:10:42 +05:30
parent 0ca6f6652d
commit 3ba3e01093

View file

@ -9,7 +9,7 @@ func Count(start int, end int) chan int {
ch := make(chan int)
go func(ch chan int) {
for i := start; i < end ; i++ {
for i := start; i <= end ; i++ {
// Blocks on the operation
ch <- i
}