diff --git a/lectures/03-goroutines/lecture.slide b/lectures/03-goroutines/lecture.slide index a045bc1..ac52046 100644 --- a/lectures/03-goroutines/lecture.slide +++ b/lectures/03-goroutines/lecture.slide @@ -111,7 +111,7 @@ var recv <-chan int = ch func counter(out chan<- int) - func squarer(out chan<- int, int <-chan int) + func squarer(out chan<- int, in <-chan int) func printer(in <-chan int) func main() {