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 ""