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)
{ }