diff --git a/websocket-sharp/Server/WebSocketServer.cs b/websocket-sharp/Server/WebSocketServer.cs index 1ebffe3b..529553d5 100644 --- a/websocket-sharp/Server/WebSocketServer.cs +++ b/websocket-sharp/Server/WebSocketServer.cs @@ -131,22 +131,22 @@ namespace WebSocketSharp.Server } /// - /// Initializes a new instance of the class with - /// the specified WebSocket URL. + /// Initializes a new instance of the class + /// with the specified WebSocket URL. /// /// /// - /// An instance initialized by this constructor listens for the incoming connection requests - /// on the host name and port in . + /// The new instance listens for the incoming handshake requests on + /// the host name and port of . /// /// - /// If doesn't include a port, either port 80 or 443 is used on - /// which to listen. It's determined by the scheme (ws or wss) in . - /// (Port 80 if the scheme is ws.) + /// If includes no port, either port 80 or 443 is + /// used on which to listen. It is determined by the scheme (ws or wss) of + /// . /// /// /// - /// A that represents the WebSocket URL of the server. + /// A that represents the WebSocket URL for the server. /// /// /// is .