diff --git a/websocket-sharp/Server/WebSocketServer.cs b/websocket-sharp/Server/WebSocketServer.cs
index ca3eb3c0..c4ed5f9a 100644
--- a/websocket-sharp/Server/WebSocketServer.cs
+++ b/websocket-sharp/Server/WebSocketServer.cs
@@ -252,32 +252,33 @@ namespace WebSocketSharp.Server
}
///
- /// Initializes a new instance of the class with
- /// the specified , ,
+ /// Initializes a new instance of the class
+ /// with the specified , ,
/// and .
///
///
- /// An instance initialized by this constructor listens for the incoming connection requests on
+ /// The new instance listens for the incoming handshake requests on
/// and .
///
///
- /// 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.
///
///
- /// A that indicates providing a secure connection or not.
- /// (true indicates providing a secure connection.)
+ /// A that specifies providing secure connections or not.
+ /// true specifies providing secure connections.
///
///
/// 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, bool secure)
{