[Modify] Edit it

This commit is contained in:
sta 2017-01-30 16:12:59 +09:00
parent b6909ac867
commit 0f97aea558

View File

@ -195,18 +195,18 @@ namespace WebSocketSharp.Server
/// the specified <paramref name="port"/> and <paramref name="secure"/>.
/// </summary>
/// <remarks>
/// An instance initialized by this constructor listens for the incoming connection requests on
/// The new instance listens for the incoming handshake requests on
/// <paramref name="port"/>.
/// </remarks>
/// <param name="port">
/// An <see cref="int"/> that represents the port number on which to listen.
/// </param>
/// <param name="secure">
/// A <see cref="bool"/> that indicates providing a secure connection or not.
/// (<c>true</c> indicates providing a secure connection.)
/// A <see cref="bool"/> that specifies providing secure connections or not.
/// <c>true</c> specifies providing secure connections.
/// </param>
/// <exception cref="ArgumentOutOfRangeException">
/// <paramref name="port"/> isn't between 1 and 65535 inclusive.
/// <paramref name="port"/> is less than 1 or greater than 65535.
/// </exception>
public WebSocketServer (int port, bool secure)
{