Fix build

This commit is contained in:
vladimir.skipina 2023-11-20 09:11:35 +01:00
parent b2422eab0e
commit d93be866c3

View File

@ -40,7 +40,7 @@ func main() {
myChannel := make(chan string) // unbuffered channel of type string
}
```
To specify which function is writing and which function is reading from the channel we use arrows: <-
To specify which function is writing and which function is reading from the channel we use arrows: ```<-```
```go
func main() {