diff --git a/websocket-sharp/Server/WebSocketServer.cs b/websocket-sharp/Server/WebSocketServer.cs index a140a652..6bd8aa57 100644 --- a/websocket-sharp/Server/WebSocketServer.cs +++ b/websocket-sharp/Server/WebSocketServer.cs @@ -133,25 +133,25 @@ namespace WebSocketSharp.Server /// /// Initializes a new instance of the class - /// with the specified WebSocket URL. + /// with the specified . /// /// /// /// The new instance listens for the incoming handshake requests on - /// the host name and port of . + /// the host and port of . /// /// /// It provides secure connections if the scheme of /// is wss. /// /// - /// 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 . + /// Either port 80 or 443 is used if includes + /// no port. Port 443 is used if the scheme of + /// is wss; otherwise, port 80 is used. /// /// /// - /// A that represents the WebSocket URL for the server. + /// A that represents the WebSocket URL of the server. /// /// /// is .