From 833ee42a1fd3cbdfe2e27af49cc1c904df7eb862 Mon Sep 17 00:00:00 2001
From: Still Hsu <5843208+Still34@users.noreply.github.com>
Date: Fri, 22 May 2020 11:51:51 +0800
Subject: [PATCH] Cleanup GatewayReconnectException docs
---
.../GatewayReconnectException.cs | 11 ++++-------
1 file changed, 4 insertions(+), 7 deletions(-)
diff --git a/src/Discord.Net.WebSocket/GatewayReconnectException.cs b/src/Discord.Net.WebSocket/GatewayReconnectException.cs
index 1a8024558..c5b15e007 100644
--- a/src/Discord.Net.WebSocket/GatewayReconnectException.cs
+++ b/src/Discord.Net.WebSocket/GatewayReconnectException.cs
@@ -3,18 +3,15 @@ using System;
namespace Discord.WebSocket
{
///
- /// An exception thrown when the gateway client has been requested to
- /// reconnect.
+ /// The exception thrown when the gateway client has been requested to reconnect.
///
public class GatewayReconnectException : Exception
{
///
- /// Creates a new instance of the
- /// type.
+ /// Initializes a new instance of the class with the reconnection
+ /// message.
///
- ///
- /// The reason why the gateway has been requested to reconnect.
- ///
+ /// The reason why the gateway has been requested to reconnect.
public GatewayReconnectException(string message)
: base(message)
{ }