[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
*
* 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
*
@ -52,10 +52,11 @@ using WebSocketSharp.Net.WebSockets;
namespace WebSocketSharp.Server
{
/// <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>
/// <remarks>
/// The HttpServer class can provide multiple WebSocket services.
/// This class can provide multiple WebSocket services.
/// </remarks>
public class HttpServer
{