From 5447aa7ad5b8922eec8e664d8bceeb832f7ecd44 Mon Sep 17 00:00:00 2001 From: Still Hsu <5843208+Still34@users.noreply.github.com> Date: Wed, 17 Jul 2019 17:58:36 +0800 Subject: [PATCH] Add returns and params docs for SyncPermissionsAsync --- src/Discord.Net.Core/Entities/Channels/INestedChannel.cs | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) 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); ///