Skip to content
This repository was archived by the owner on Mar 5, 2023. It is now read-only.

Commit 2a22f54

Browse files
committed
fix: typo in system channel flag constants
Fix typo in names of SystemChannelFlagsSuppressGuildReminderNotifications and SystemChannelFlagsSuppressJoinNotificationReplies constants.
1 parent e741fc2 commit 2a22f54

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

structs.go

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1063,10 +1063,10 @@ type SystemChannelFlag int
10631063

10641064
// Block containing known SystemChannelFlag values
10651065
const (
1066-
SystemChannelFlagsSuppressJoinNotifications SystemChannelFlag = 1 << 0
1067-
SystemChannelFlagsSuppressPremium SystemChannelFlag = 1 << 1
1068-
SystemChannelFlagsSupressGuildReminderNotifications SystemChannelFlag = 1 << 2
1069-
SystemChannelFlagsSupressJoinNotificationReplies SystemChannelFlag = 1 << 3
1066+
SystemChannelFlagsSuppressJoinNotifications SystemChannelFlag = 1 << 0
1067+
SystemChannelFlagsSuppressPremium SystemChannelFlag = 1 << 1
1068+
SystemChannelFlagsSuppressGuildReminderNotifications SystemChannelFlag = 1 << 2
1069+
SystemChannelFlagsSuppressJoinNotificationReplies SystemChannelFlag = 1 << 3
10701070
)
10711071

10721072
// IconURL returns a URL to the guild's icon.

0 commit comments

Comments
 (0)