diff --git a/src/Discord.Net.Core/Entities/Channels/INestedChannel.cs b/src/Discord.Net.Core/Entities/Channels/INestedChannel.cs
index f45a0114a..e38e1db41 100644
--- a/src/Discord.Net.Core/Entities/Channels/INestedChannel.cs
+++ b/src/Discord.Net.Core/Entities/Channels/INestedChannel.cs
@@ -26,10 +26,14 @@ namespace Discord
/// representing the parent of this channel; null if none is set.
///
Task GetCategoryAsync(CacheMode mode = CacheMode.AllowDownload, RequestOptions options = null);
-
+
///
/// Syncs the permissions of this nested channel with its parent's.
///
+ /// The options to be used when sending the request.
+ ///
+ /// A task that represents the asynchronous operation for syncing channel permissions with its parent's.
+ ///
Task SyncPermissionsAsync(RequestOptions options = null);
///