diff --git a/websocket-sharp/WebSocketState.cs b/websocket-sharp/WebSocketState.cs
index 469350cb..68db661b 100644
--- a/websocket-sharp/WebSocketState.cs
+++ b/websocket-sharp/WebSocketState.cs
@@ -35,27 +35,30 @@ namespace WebSocketSharp
///
///
/// The values of this enumeration are defined in
- /// The WebSocket API.
+ ///
+ /// The WebSocket API.
///
public enum WebSocketState : ushort
{
///
- /// Equivalent to numeric value 0. Indicates that the connection hasn't yet been established.
+ /// Equivalent to numeric value 0. Indicates that the connection has not
+ /// yet been established.
///
Connecting = 0,
///
- /// Equivalent to numeric value 1. Indicates that the connection has been established,
- /// and the communication is possible.
+ /// Equivalent to numeric value 1. Indicates that the connection has
+ /// been established, and the communication is possible.
///
Open = 1,
///
- /// Equivalent to numeric value 2. Indicates that the connection is going through
- /// the closing handshake, or the WebSocket.Close method has been invoked.
+ /// Equivalent to numeric value 2. Indicates that the connection is
+ /// going through the closing handshake, or the close method has
+ /// been invoked.
///
Closing = 2,
///
- /// Equivalent to numeric value 3. Indicates that the connection has been closed or
- /// couldn't be established.
+ /// Equivalent to numeric value 3. Indicates that the connection has
+ /// been closed or could not be established.
///
Closed = 3
}