1
0
mirror of https://github.com/tmrts/go-patterns.git synced 2024-11-22 04:56:09 +03:00

Fix formatting of generator.md

This commit is contained in:
Gregory Ganley 2021-02-20 16:12:27 -05:00 committed by GitHub
parent f978e42036
commit f9557e066b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

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