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:
parent
0ca6f6652d
commit
3ba3e01093
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue