Update README.md

This commit is contained in:
Thomas Gruber 2021-12-21 15:40:52 +01:00 committed by GitHub
parent 0385eb724c
commit ef6bdcd768
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -26,9 +26,9 @@ t.AddChannel(c2)
for {
select {
case t1 :<- c1:
case t1 := <- c1:
log.Print(t1)
case t2 :<- c2:
case t2 := <- c2:
log.Print(t2)
}
}