lint: Fix spelling mistake in ExclusiveBulkDelete warning (#1330)

This commit is contained in:
Passive
2019-06-22 07:21:22 +10:00
committed by Christopher F
parent 0484fe8e9d
commit c864f48c3b

View File

@@ -1380,7 +1380,7 @@ namespace Discord.WebSocket
if (!ExclusiveBulkDelete.HasValue) if (!ExclusiveBulkDelete.HasValue)
{ {
await _gatewayLogger.WarningAsync("A bulk delete event has been received, but the event handling behavior has not been set. " + await _gatewayLogger.WarningAsync("A bulk delete event has been received, but the event handling behavior has not been set. " +
"To supress this message, set the ExclusiveBulkDelete configuration property. " + "To suppress this message, set the ExclusiveBulkDelete configuration property. " +
"This message will appear only once."); "This message will appear only once.");
ExclusiveBulkDelete = false; ExclusiveBulkDelete = false;
} }