mirror of
https://github.com/unknwon/the-way-to-go_ZH_CN.git
synced 2025-08-11 23:08:34 +08:00
Fix a variable spelling mistake. (#563)
This commit is contained in:
@@ -551,7 +551,7 @@ func sink(ch <-chan int) {
|
||||
|
||||
```go
|
||||
sendChan := make(chan int)
|
||||
reciveChan := make(chan string)
|
||||
receiveChan := make(chan string)
|
||||
go processChannel(sendChan, receiveChan)
|
||||
|
||||
func processChannel(in <-chan int, out chan<- string) {
|
||||
|
Reference in New Issue
Block a user