diff --git a/websocket-sharp/Server/WebSocketServer.cs b/websocket-sharp/Server/WebSocketServer.cs
index c4ed5f9a..33f42ebf 100644
--- a/websocket-sharp/Server/WebSocketServer.cs
+++ b/websocket-sharp/Server/WebSocketServer.cs
@@ -224,15 +224,16 @@ namespace WebSocketSharp.Server
///
///
///
- /// An instance initialized by this constructor listens for the incoming connection requests
- /// on and .
+ /// The new instance listens for the incoming handshake requests on
+ /// and .
///
///
- /// If is 443, that instance provides a secure connection.
+ /// It provides secure connections if is 443.
///
///
///
- /// A that represents the local IP address of the server.
+ /// A that represents the local IP address
+ /// for the server.
///
///
/// An that represents the port number on which to listen.
@@ -241,10 +242,10 @@ namespace WebSocketSharp.Server
/// 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 WebSocketServer (System.Net.IPAddress address, int port)
: this (address, port, port == 443)