From d93be866c3d828bd661a18a32efa404571b0695d Mon Sep 17 00:00:00 2001 From: "vladimir.skipina" Date: Mon, 20 Nov 2023 09:11:35 +0100 Subject: [PATCH] Fix build --- foomo/docs/backend/go-by-example/goroutines-and-channels.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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() {