From 499007f2d741912ceba70d5394df31d72d2da271 Mon Sep 17 00:00:00 2001 From: tpltnt Date: Fri, 14 Feb 2014 17:10:06 +0100 Subject: [PATCH] wording fix --- irc_struct.go | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/irc_struct.go b/irc_struct.go index de05e83..a0d468a 100644 --- a/irc_struct.go +++ b/irc_struct.go @@ -56,7 +56,9 @@ type Event struct { } -// Extract the last message from an Event. This function eventually returns an empty string. +// Retrieve the last message from Event arguments. +// This function leaves the arguments untouched and +// returns an empty string if there are none. func (e *Event) Message() string { if len(e.Arguments) == 0 { return ""