diff --git a/src/Discord.Net.Core/Entities/Channels/INewsChannel.cs b/src/Discord.Net.Core/Entities/Channels/INewsChannel.cs
index b3c9fe8e..7a94ac83 100644
--- a/src/Discord.Net.Core/Entities/Channels/INewsChannel.cs
+++ b/src/Discord.Net.Core/Entities/Channels/INewsChannel.cs
@@ -1,18 +1,17 @@
using System.Threading.Tasks;
-namespace Discord
+namespace Discord;
+
+///
+/// Represents a generic news channel in a guild that can send and receive messages.
+///
+public interface INewsChannel : ITextChannel
{
///
- /// Represents a generic news channel in a guild that can send and receive messages.
+ /// Follow this channel to send messages to a target channel.
///
- public interface INewsChannel : ITextChannel
- {
- ///
- /// Follow this channel to send messages to a target channel.
- ///
- ///
- /// The Id of the created webhook.
- ///
- Task FollowAnnouncementChannelAsync(ulong channelId, RequestOptions options);
- }
+ ///
+ /// The Id of the created webhook.
+ ///
+ Task FollowAnnouncementChannelAsync(ulong channelId, RequestOptions options = null);
}