From 1708b80ca94f4b371575ad34c3acbe349cdf4834 Mon Sep 17 00:00:00 2001 From: Sunil Joshi <4852488+c0dehu1k@users.noreply.github.com> Date: Thu, 5 Oct 2023 21:03:35 +0530 Subject: [PATCH] Unbuffered channel --- docs/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/index.md b/docs/index.md index bd6d6c6..c7c2910 100644 --- a/docs/index.md +++ b/docs/index.md @@ -1527,7 +1527,7 @@ In summary, let’s be mindful that a goroutine is a resource like any other tha One common mistake made by Go developers while working with channels is to make wrong assumptions about how select behaves with multiple channels. -For example, let's consider the following case (`disconnectCh` is a buffered channel): +For example, let's consider the following case (`disconnectCh` is a unbuffered channel): ```go go func() {