From 674c2f852eaea7d2db5db2f81b5a3ae8977521e8 Mon Sep 17 00:00:00 2001 From: Chris Rhodes Date: Fri, 15 Feb 2013 18:44:00 -0800 Subject: [PATCH] Pong Ping, What's the difference? --- client/commands.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/commands.go b/client/commands.go index 594cb5b..f620f61 100644 --- a/client/commands.go +++ b/client/commands.go @@ -167,5 +167,5 @@ func (conn *Conn) Oper(user, pass string) { conn.out <- OPER + " " + user + " " // A PONG response is to be expected afterwards func (conn *Conn) Ping(message string) { conn.out <- PING + " :" + message } -// Ping() sends a PONG command to the server +// Pong() sends a PONG command to the server func (conn *Conn) Pong(message string) { conn.out <- PONG + " :" + message }