From d8769daaa9e24b92ee8068d6f1ac366b241feb3a Mon Sep 17 00:00:00 2001 From: Eugene K Date: Thu, 22 Jul 2021 08:49:50 +0000 Subject: [PATCH] Fix typo in lectures/03-goroutines/lecture.slide --- lectures/03-goroutines/lecture.slide | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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() {