Skip to content

Commit

Permalink
Merge pull request #45 from c0dehu1k/issue#44
Browse files Browse the repository at this point in the history
Unbuffered channel
  • Loading branch information
teivah committed Oct 5, 2023
2 parents bfd5c81 + 1708b80 commit 024e436
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -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() {
Expand Down

0 comments on commit 024e436

Please sign in to comment.