|
@@ -557,7 +557,7 @@ go processChannel(sendChan, receiveChan)
|
|
|
func processChannel(in <-chan int, out chan<- string) {
|
|
func processChannel(in <-chan int, out chan<- string) {
|
|
|
for inValue := range in {
|
|
for inValue := range in {
|
|
|
result := ... /// processing inValue
|
|
result := ... /// processing inValue
|
|
|
- out <- result
|
|
|
|
|
|
|
+ out <- result
|
|
|
}
|
|
}
|
|
|
}
|
|
}
|
|
|
```
|
|
```
|