Skip to content

Commit

Permalink
adjust wording
Browse files Browse the repository at this point in the history
  • Loading branch information
mlnrDev committed Sep 7, 2023
1 parent 27e945b commit 534bcf4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cache/caches.go
Original file line number Diff line number Diff line change
Expand Up @@ -724,7 +724,7 @@ type Caches interface {
// GuildTextChannel returns a discord.GuildTextChannel from the ChannelCache and a bool indicating if it exists.
GuildTextChannel(channelID snowflake.ID) (discord.GuildTextChannel, bool)

// GuildVoiceChannel returns a discord.GuildAudioChannel from the ChannelCache and a bool indicating if it exists.
// GuildVoiceChannel returns a discord.GuildAudioChannel of type discord.ChannelTypeGuildVoice from the ChannelCache and a bool indicating if it exists.
GuildVoiceChannel(channelID snowflake.ID) (discord.GuildAudioChannel, bool)

// GuildCategoryChannel returns a discord.GuildCategoryChannel from the ChannelCache and a bool indicating if it exists.
Expand All @@ -742,7 +742,7 @@ type Caches interface {
// GuildPrivateThread returns a discord.GuildThread from the ChannelCache and a bool indicating if it exists.
GuildPrivateThread(channelID snowflake.ID) (discord.GuildThread, bool)

// GuildStageVoiceChannel returns a discord.GuildAudioChannel from the ChannelCache and a bool indicating if it exists.
// GuildStageVoiceChannel returns a discord.GuildAudioChannel of type discord.ChannelTypeGuildStageVoice from the ChannelCache and a bool indicating if it exists.
GuildStageVoiceChannel(channelID snowflake.ID) (discord.GuildAudioChannel, bool)

// GuildForumChannel returns a discord.GuildForumChannel from the ChannelCache and a bool indicating if it exists.
Expand Down

0 comments on commit 534bcf4

Please sign in to comment.