diff --git a/src/Discord.Net.Core/Entities/Channels/ITextChannel.cs b/src/Discord.Net.Core/Entities/Channels/ITextChannel.cs index 243eb4be3..099822fb0 100644 --- a/src/Discord.Net.Core/Entities/Channels/ITextChannel.cs +++ b/src/Discord.Net.Core/Entities/Channels/ITextChannel.cs @@ -29,22 +29,24 @@ namespace Discord /// /// Bulk-deletes multiple messages. /// - /// The messages to be bulk-deleted. - /// The options to be used when sending the request. /// - /// > [!IMPORTANT] - /// > This method can only remove messages that are posted within 14 days! + /// + /// This method can only remove messages that are posted within 14 days! + /// /// + /// The messages to be bulk-deleted. + /// The options to be used when sending the request. Task DeleteMessagesAsync(IEnumerable messages, RequestOptions options = null); /// /// Bulk-deletes multiple messages. /// - /// The IDs of the messages to be bulk-deleted. - /// The options to be used when sending the request. /// - /// > [!IMPORTANT] - /// > This method can only remove messages that are posted within 14 days! + /// + /// This method can only remove messages that are posted within 14 days! + /// /// + /// The IDs of the messages to be bulk-deleted. + /// The options to be used when sending the request. Task DeleteMessagesAsync(IEnumerable messageIds, RequestOptions options = null); ///