diff --git a/foomo/docs/backend/go-by-example/goroutines-and-channels.mdx b/foomo/docs/backend/go-by-example/goroutines-and-channels.mdx index b34ebc3..ad79f5a 100644 --- a/foomo/docs/backend/go-by-example/goroutines-and-channels.mdx +++ b/foomo/docs/backend/go-by-example/goroutines-and-channels.mdx @@ -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() {