[Modify] Edit it

This commit is contained in:
sta 2017-07-04 15:49:09 +09:00
parent 473cf76f1b
commit 512758e8d1

View File

@ -2,7 +2,7 @@
/* /*
* HttpServer.cs * HttpServer.cs
* *
* A simple HTTP server that allows to accept the WebSocket connection requests. * A simple HTTP server that allows to accept WebSocket handshake requests.
* *
* The MIT License * The MIT License
* *
@ -52,10 +52,11 @@ using WebSocketSharp.Net.WebSockets;
namespace WebSocketSharp.Server namespace WebSocketSharp.Server
{ {
/// <summary> /// <summary>
/// Provides a simple HTTP server that allows to accept the WebSocket connection requests. /// Provides a simple HTTP server that allows to accept
/// WebSocket handshake requests.
/// </summary> /// </summary>
/// <remarks> /// <remarks>
/// The HttpServer class can provide multiple WebSocket services. /// This class can provide multiple WebSocket services.
/// </remarks> /// </remarks>
public class HttpServer public class HttpServer
{ {