fix: typo in system channel flag constants

Fix typo in names of SystemChannelFlagsSuppressGuildReminderNotifications and SystemChannelFlagsSuppressJoinNotificationReplies constants.
This commit is contained in:
Fedor Lapshin 2022-12-17 23:08:14 +03:00
parent e741fc2790
commit 2a22f54711
No known key found for this signature in database
GPG key ID: 492D745FB49D2DAB

View file

@ -1063,10 +1063,10 @@ type SystemChannelFlag int
// Block containing known SystemChannelFlag values
const (
SystemChannelFlagsSuppressJoinNotifications SystemChannelFlag = 1 << 0
SystemChannelFlagsSuppressPremium SystemChannelFlag = 1 << 1
SystemChannelFlagsSupressGuildReminderNotifications SystemChannelFlag = 1 << 2
SystemChannelFlagsSupressJoinNotificationReplies SystemChannelFlag = 1 << 3
SystemChannelFlagsSuppressJoinNotifications SystemChannelFlag = 1 << 0
SystemChannelFlagsSuppressPremium SystemChannelFlag = 1 << 1
SystemChannelFlagsSuppressGuildReminderNotifications SystemChannelFlag = 1 << 2
SystemChannelFlagsSuppressJoinNotificationReplies SystemChannelFlag = 1 << 3
)
// IconURL returns a URL to the guild's icon.