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);