Fix broken links

This commit is contained in:
kozabrada123 2023-07-30 08:31:12 +02:00
parent 499faefa51
commit 51679e773c
1 changed files with 4 additions and 4 deletions

View File

@ -138,7 +138,7 @@ pub enum ChannelType {
GroupDm = 3, GroupDm = 3,
/// An organizational category that contains up to 50 channels /// An organizational category that contains up to 50 channels
GuildCategory = 4, GuildCategory = 4,
/// Similar to [GuildText], a channel that users can follow and crosspost into their own guild /// Similar to [GuildText](ChannelType::GuildText), a channel that users can follow and crosspost into their own guild
GuildNews = 5, GuildNews = 5,
/// A channel in which game developers can sell their game on Discord /// A channel in which game developers can sell their game on Discord
/// ///
@ -151,11 +151,11 @@ pub enum ChannelType {
EncryptedThreads = 8, EncryptedThreads = 8,
// FIXME userdoccers says 9 is ThreadAlpha, was this changed? // FIXME userdoccers says 9 is ThreadAlpha, was this changed?
Transactional = 9, Transactional = 9,
/// A thread within a [GuildNews] channel /// A thread within a [GuildNews](ChannelType::GuildNews) channel
GuildNewsThread = 10, GuildNewsThread = 10,
/// A thread within a [GuildText], [GuildForum], or [GuildMedia] channel /// A thread within a [GuildText](ChannelType::GuildText), [GuildForum](ChannelType::GuildForum), or [GuildMedia](ChannelType::GuildMedia) channel
GuildPublicThread = 11, GuildPublicThread = 11,
/// A thread within a [GuildText] channel, that is only viewable by those invited and those with the [ManageThreads] permission /// A thread within a [GuildText](ChannelType::GuildText) channel, that is only viewable by those invited and those with the [MANAGE_THREADS](crate::types::entities::PermissionFlags::MANAGE_THREADS) permission
GuildPrivateThread = 12, GuildPrivateThread = 12,
/// A voice channel for hosting events with an audience in a guild /// A voice channel for hosting events with an audience in a guild
GuildStageVoice = 13, GuildStageVoice = 13,