diff --git a/docs/index.md b/docs/index.md index bd6d6c6d..c7c2910e 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() {