From 696287e25af24057a9988354880e6e5d2a1e4462 Mon Sep 17 00:00:00 2001 From: sta Date: Wed, 10 Dec 2014 14:28:30 +0900 Subject: [PATCH] Modified a few for xml doc comment --- websocket-sharp/Net/HttpStatusCode.cs | 2 +- websocket-sharp/Net/HttpVersion.cs | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/websocket-sharp/Net/HttpStatusCode.cs b/websocket-sharp/Net/HttpStatusCode.cs index 86a0a5cc..123415f0 100644 --- a/websocket-sharp/Net/HttpStatusCode.cs +++ b/websocket-sharp/Net/HttpStatusCode.cs @@ -43,7 +43,7 @@ namespace WebSocketSharp.Net /// /// /// The HttpStatusCode enumeration contains the values of the HTTP status codes defined in - /// RFC 2616 for HTTP 1.1. + /// RFC 2616 for the HTTP/1.1. /// public enum HttpStatusCode { diff --git a/websocket-sharp/Net/HttpVersion.cs b/websocket-sharp/Net/HttpVersion.cs index 81fbe104..d20061e0 100644 --- a/websocket-sharp/Net/HttpVersion.cs +++ b/websocket-sharp/Net/HttpVersion.cs @@ -45,15 +45,15 @@ namespace WebSocketSharp.Net /// public class HttpVersion { - #region Public Static Fields + #region Public Fields /// - /// Provides a instance for HTTP 1.0. + /// Provides a instance for the HTTP/1.0. /// public static readonly Version Version10 = new Version (1, 0); /// - /// Provides a instance for HTTP 1.1. + /// Provides a instance for the HTTP/1.1. /// public static readonly Version Version11 = new Version (1, 1);