diff --git a/websocket-sharp/Server/HttpServer.cs b/websocket-sharp/Server/HttpServer.cs
index 939c6f0c..98a191e2 100644
--- a/websocket-sharp/Server/HttpServer.cs
+++ b/websocket-sharp/Server/HttpServer.cs
@@ -248,27 +248,29 @@ namespace WebSocketSharp.Server
/// and .
///
///
- /// An instance initialized by this constructor listens for the incoming requests on
+ /// The new instance listens for incoming requests on
/// and .
///
///
- /// A that represents the local IP address of the server.
+ /// A that represents
+ /// the local IP address on which to listen.
///
///
- /// An that represents the port number on which to listen.
+ /// An that represents the number of the port
+ /// on which to listen.
///
///
- /// A that indicates providing a secure connection or not.
- /// (true indicates providing a secure connection.)
+ /// A : true if the new instance provides
+ /// secure connections; otherwise, false.
///
///
/// is .
///
///
- /// isn't a local IP address.
+ /// is not a local IP address.
///
///
- /// isn't between 1 and 65535 inclusive.
+ /// is less than 1 or greater than 65535.
///
public HttpServer (System.Net.IPAddress address, int port, bool secure)
{