diff --git a/websocket-sharp/Net/HttpListenerResponse.cs b/websocket-sharp/Net/HttpListenerResponse.cs
index 3b1dfffa..d9193cf2 100644
--- a/websocket-sharp/Net/HttpListenerResponse.cs
+++ b/websocket-sharp/Net/HttpListenerResponse.cs
@@ -774,21 +774,24 @@ namespace WebSocketSharp.Net
}
///
- /// Appends a to the specified HTTP header sent with the response.
+ /// Appends an HTTP header with the specified name and value to
+ /// the headers for the response.
///
///
- /// A that represents the name of the header to append
- /// to.
+ /// A that represents the name of the header to
+ /// append.
///
///
- /// A that represents the value to append to the header.
+ /// A that represents the value of the header to
+ /// append.
///
///
/// is or empty.
///
///
///
- /// or contains invalid characters.
+ /// or contains
+ /// an invalid character.
///
///
/// -or-
@@ -798,10 +801,11 @@ namespace WebSocketSharp.Net
///
///
///
- /// The length of is greater than 65,535 characters.
+ /// The length of is greater than 65,535
+ /// characters.
///
///
- /// The current headers cannot allow the header to append a value.
+ /// The header cannot be allowed to append to the current headers.
///
public void AppendHeader (string name, string value)
{