From af52a8c82263852898cd16f1311731d8c7acc159 Mon Sep 17 00:00:00 2001 From: Bruce Marriner Date: Sun, 7 Feb 2016 20:47:33 -0600 Subject: [PATCH] Fix type, thanks KuroiKitsu --- restapi.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/restapi.go b/restapi.go index 5f057d1..589185c 100644 --- a/restapi.go +++ b/restapi.go @@ -655,7 +655,7 @@ func (s *Session) GuildSplash(guildID string) (img image.Image, err error) { // ------------------------------------------------------------------------------------------------ // Channel returns a Channel strucutre of a specific Channel. -// channelID : The ID of the Channel you want returend. +// channelID : The ID of the Channel you want returned. func (s *Session) Channel(channelID string) (st *Channel, err error) { body, err := s.Request("GET", CHANNEL(channelID), nil) if err != nil {