diff --git a/websocket-sharp/Server/WebSocketServer.cs b/websocket-sharp/Server/WebSocketServer.cs
index 93bbac9d..bd24fb33 100644
--- a/websocket-sharp/Server/WebSocketServer.cs
+++ b/websocket-sharp/Server/WebSocketServer.cs
@@ -106,23 +106,23 @@ namespace WebSocketSharp.Server
}
///
- /// Initializes a new instance of the class with
- /// the specified .
+ /// Initializes a new instance of the class
+ /// with the specified .
///
///
///
- /// An instance initialized by this constructor listens for the incoming connection requests
- /// on .
+ /// The new instance listens for the incoming handshake requests on
+ /// .
///
///
- /// If is 443, that instance provides a secure connection.
+ /// It provides secure connections if is 443.
///
///
///
/// An that represents the port number on which to listen.
///
///
- /// isn't between 1 and 65535 inclusive.
+ /// is less than 1 or greater than 65535.
///
public WebSocketServer (int port)
: this (port, port == 443)