From 14ace7725c0a88a80d06ae66deb07948faec3ce3 Mon Sep 17 00:00:00 2001 From: Liam Stanley Date: Fri, 14 Dec 2018 20:27:26 -0800 Subject: [PATCH] fix comment --- client.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/client.go b/client.go index 5c19721..b526aeb 100644 --- a/client.go +++ b/client.go @@ -436,8 +436,8 @@ func (c *Client) GetNick() string { return c.state.nick } -// Returns an RFC1459 compliant version of the current nickname. Panics if -// tracking is disabled. +// GetID returns an RFC1459 compliant version of the current nickname. Panics +// if tracking is disabled. func (c *Client) GetID() string { return ToRFC1459(c.GetNick()) }