From 229e3f7cda233a964264cdfb9f6ff3427b760bb3 Mon Sep 17 00:00:00 2001 From: Mischa <2610510+Mischala@users.noreply.github.com> Date: Fri, 29 Jan 2021 11:06:20 +1300 Subject: [PATCH] Fixed copy-paste error in comment COPY PASTE STRIKES AGAIN! --- service/discord/discord.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/service/discord/discord.go b/service/discord/discord.go index 35037aa..0c2d96c 100644 --- a/service/discord/discord.go +++ b/service/discord/discord.go @@ -81,7 +81,7 @@ func parseOAuthToken(token string) string { return "Bearer " + token } -// AddReceivers takes Telegram channel IDs and adds them to the internal channel ID list. The Send method will send +// AddReceivers takes Discord channel IDs and adds them to the internal channel ID list. The Send method will send // a given message to all those channels. func (d *Discord) AddReceivers(channelIDs ...string) { d.channelIDs = append(d.channelIDs, channelIDs...)