mirror of
https://github.com/tmrts/go-patterns.git
synced 2024-11-25 14:36:06 +03:00
Fix formatting of generator.md
This commit is contained in:
parent
f978e42036
commit
f9557e066b
@ -9,7 +9,7 @@ func Count(start int, end int) chan int {
|
|||||||
ch := make(chan int)
|
ch := make(chan int)
|
||||||
|
|
||||||
go func(ch chan int) {
|
go func(ch chan int) {
|
||||||
for i := start; i <= end ; i++ {
|
for i := start; i <= end; i++ {
|
||||||
// Blocks on the operation
|
// Blocks on the operation
|
||||||
ch <- i
|
ch <- i
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user