From e670ca970c545deaf7f76106cb8fca88e27b7041 Mon Sep 17 00:00:00 2001 From: Jake Bailey Date: Mon, 11 Jan 2016 16:25:17 -0600 Subject: [PATCH] fix comment --- client/commands.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/client/commands.go b/client/commands.go index e49faca..0e935a5 100644 --- a/client/commands.go +++ b/client/commands.go @@ -292,7 +292,8 @@ func (conn *Conn) Ping(message string) { conn.Raw(PING + " :" + message) } func (conn *Conn) Pong(message string) { conn.Raw(PONG + " :" + message) } // Cap sends a CAP command to the server. -// CAP capability +// CAP subcommand +// CAP subcommand :message func (conn *Conn) Cap(subcommmand string, message ...string) { if len(message) == 0 { conn.Raw(CAP + " " + subcommmand)