From 7458f65033693f42c82480d4bda9cc402c52759a Mon Sep 17 00:00:00 2001 From: sta Date: Fri, 26 Sep 2014 13:53:46 +0900 Subject: [PATCH] Modified a few xml doc comments in CloseStatusCode.cs --- websocket-sharp/CloseStatusCode.cs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/websocket-sharp/CloseStatusCode.cs b/websocket-sharp/CloseStatusCode.cs index 065afb43..51de672c 100644 --- a/websocket-sharp/CloseStatusCode.cs +++ b/websocket-sharp/CloseStatusCode.cs @@ -70,17 +70,17 @@ namespace WebSocketSharp IncorrectData = 1003, /// /// Equivalent to close status 1004. - /// Still undefined. Reserved value. + /// Still undefined. A Reserved value. /// Undefined = 1004, /// /// Equivalent to close status 1005. - /// Indicates that no status code was actually present. Reserved value. + /// Indicates that no status code was actually present. A Reserved value. /// NoStatusCode = 1005, /// /// Equivalent to close status 1006. - /// Indicates that the connection was closed abnormally. Reserved value. + /// Indicates that the connection was closed abnormally. A Reserved value. /// Abnormal = 1006, /// @@ -117,7 +117,7 @@ namespace WebSocketSharp /// /// Equivalent to close status 1015. /// Indicates that the connection was closed due to a failure to perform a TLS handshake. - /// Reserved value. + /// A Reserved value. /// TlsHandshakeFailure = 1015 }