Fix typo in audit log interface declaration (#1104)

This commit is contained in:
Still Hsu
2018-07-11 07:32:29 +08:00
committed by Christopher F
parent beb3d46e08
commit b2f0043952
3 changed files with 3 additions and 3 deletions

View File

@@ -149,7 +149,7 @@ namespace Discord
Task<int> PruneUsersAsync(int days = 30, bool simulate = false, RequestOptions options = null);
/// <summary> Gets the specified number of audit log entries for this guild. </summary>
Task<IReadOnlyCollection<IAuditLogEntry>> GetAuditLogAsync(int limit = DiscordConfig.MaxAuditLogEntriesPerBatch,
Task<IReadOnlyCollection<IAuditLogEntry>> GetAuditLogsAsync(int limit = DiscordConfig.MaxAuditLogEntriesPerBatch,
CacheMode mode = CacheMode.AllowDownload, RequestOptions options = null);
/// <summary> Gets the webhook in this guild with the provided id, or null if not found. </summary>