From 7f340e8b6c604ab7f19c94b66ad33f8433a22db2 Mon Sep 17 00:00:00 2001 From: Dustin Pianalto Date: Mon, 6 Apr 2020 11:48:35 -0800 Subject: [PATCH] Update comments for Godoc --- context.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/context.go b/context.go index f1efcfe..d871a09 100644 --- a/context.go +++ b/context.go @@ -16,12 +16,12 @@ func (c *Context) Send(message string) (*discordgo.Message, error) { return c.Session.ChannelMessageSend(c.Channel.ID, message) } -// Send an embed to originating channel +// SendEmbed sends an embed to originating channel func (c *Context) SendEmbed(embed *discordgo.MessageEmbed) (*discordgo.Message, error) { return c.Session.ChannelMessageSendEmbed(c.Channel.ID, embed) } -// Send a file to originating channel +// SendFile sends a file to originating channel func (c *Context) SendFile(filename string, file io.Reader) (*discordgo.Message, error) { return c.Session.ChannelFileSend(c.Channel.ID, filename, file) }