From e9a0d9fc84ce8e339c5931f9660c8954aa6cfd0a Mon Sep 17 00:00:00 2001 From: novalagung Date: Sun, 15 Oct 2023 18:08:42 +0700 Subject: [PATCH] fix: accidental update --- content/A-buffered-channel.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/A-buffered-channel.md b/content/A-buffered-channel.md index 23f894076..cdac3e3dd 100644 --- a/content/A-buffered-channel.md +++ b/content/A-buffered-channel.md @@ -28,7 +28,7 @@ import ( func main() { runtime.GOMAXPROCS(2) - messages := make(chan int, 2) + messages := make(chan int, 3) go func() { for {