From 5bbaf7559943a3833942eb68fc2cb70078e0e502 Mon Sep 17 00:00:00 2001 From: sta Date: Mon, 30 Jan 2017 15:49:39 +0900 Subject: [PATCH] [Modify] Edit it --- websocket-sharp/Server/WebSocketServer.cs | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) 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)