diff --git a/websocket-sharp/Server/HttpRequestEventArgs.cs b/websocket-sharp/Server/HttpRequestEventArgs.cs
index f355d0a1..34a83ecf 100644
--- a/websocket-sharp/Server/HttpRequestEventArgs.cs
+++ b/websocket-sharp/Server/HttpRequestEventArgs.cs
@@ -4,7 +4,7 @@
*
* The MIT License
*
- * Copyright (c) 2012-2014 sta.blockhead
+ * Copyright (c) 2012-2015 sta.blockhead
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
@@ -32,20 +32,19 @@ using WebSocketSharp.Net;
namespace WebSocketSharp.Server
{
///
- /// Contains the event data associated with an HTTP request event that
- /// the emits.
+ /// Represents the event data for the HTTP request event that the emits.
///
///
///
/// An HTTP request event occurs when the receives an HTTP request.
///
///
- /// If you would like to get the request data, you should access
- /// the property.
+ /// If you would like to get the request data sent from a client,
+ /// you should access the property.
///
///
- /// And if you would like to get the data used to return a response, you should access
- /// the property.
+ /// And if you would like to get the response data used to return a response,
+ /// you should access the property.
///
///
public class HttpRequestEventArgs : EventArgs
@@ -70,11 +69,10 @@ namespace WebSocketSharp.Server
#region Public Properties
///
- /// Gets the that represents the HTTP request sent from
- /// a client.
+ /// Gets the HTTP request data sent from a client.
///
///
- /// A that represents the request.
+ /// A that represents the request data.
///
public HttpListenerRequest Request {
get {
@@ -83,10 +81,10 @@ namespace WebSocketSharp.Server
}
///
- /// Gets the used to return an HTTP response to the client.
+ /// Gets the HTTP response data used to return a response to the client.
///
///
- /// A used to return a response.
+ /// A that represents the response data.
///
public HttpListenerResponse Response {
get {