Browse Source

Fix GetCategoryAsync docs

pull/1161/head
Still Hsu 7 years ago
parent
commit
af83007937
No known key found for this signature in database GPG Key ID: 8601A145FDA95209
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      src/Discord.Net.Core/Entities/Channels/INestedChannel.cs

+ 2
- 2
src/Discord.Net.Core/Entities/Channels/INestedChannel.cs View File

@@ -20,9 +20,9 @@ namespace Discord
/// </summary> /// </summary>
/// <param name="mode">The <see cref="CacheMode"/> that determines whether the object should be fetched from cache.</param> /// <param name="mode">The <see cref="CacheMode"/> that determines whether the object should be fetched from cache.</param>
/// <param name="options">The options to be used when sending the request.</param> /// <param name="options">The options to be used when sending the request.</param>
/// <remarks>
/// <returns>
/// A category channel representing the parent of this channel; <c>null</c> if none is set. /// A category channel representing the parent of this channel; <c>null</c> if none is set.
/// </remarks>
/// </returns>
Task<ICategoryChannel> GetCategoryAsync(CacheMode mode = CacheMode.AllowDownload, RequestOptions options = null); Task<ICategoryChannel> GetCategoryAsync(CacheMode mode = CacheMode.AllowDownload, RequestOptions options = null);
} }
} }

Loading…
Cancel
Save