summaryrefslogtreecommitdiff
path: root/m4p
diff options
context:
space:
mode:
Diffstat (limited to 'm4p')
-rw-r--r--m4p/client.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/m4p/client.go b/m4p/client.go
index 3467b3f..c7bb897 100644
--- a/m4p/client.go
+++ b/m4p/client.go
@@ -67,7 +67,7 @@ func Dial(ctx context.Context, addr string, opts ...DialOption) (*Client, error)
conn: conn,
opts: o,
serverKeepalive: make(chan struct{}, 1),
- recvBuf: make(chan Message, 10), // Buffer up to 10 messages after which we block.
+ recvBuf: make(chan Message, 10), // Buffer up to 10 messages after which we discard them.
}
// Register our client with the server.