From 13a41f875478a04738e64438aaa2508a25903df7 Mon Sep 17 00:00:00 2001 From: Still Hsu <5843208+Still34@users.noreply.github.com> Date: Fri, 22 May 2020 11:44:27 +0800 Subject: [PATCH] Mark null as a specific langword in summary --- src/Discord.Net.WebSocket/DiscordSocketConfig.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Discord.Net.WebSocket/DiscordSocketConfig.cs b/src/Discord.Net.WebSocket/DiscordSocketConfig.cs index c374d9e0d..8392105f0 100644 --- a/src/Discord.Net.WebSocket/DiscordSocketConfig.cs +++ b/src/Discord.Net.WebSocket/DiscordSocketConfig.cs @@ -102,8 +102,8 @@ namespace Discord.WebSocket /// public bool AlwaysDownloadUsers { get; set; } = false; /// - /// Gets or sets the timeout for event handlers, in milliseconds, after which a warning will be logged. Null - /// disables this check. + /// Gets or sets the timeout for event handlers, in milliseconds, after which a warning will be logged. + /// nulldisables this check. /// public int? HandlerTimeout { get; set; } = 3000;