[Modify] Edit it

This commit is contained in:
sta 2016-12-24 17:35:03 +09:00
parent 527723eea4
commit b45a6572cd

View File

@ -1285,11 +1285,11 @@ namespace WebSocketSharp
} }
/// <summary> /// <summary>
/// Determines whether the specified <see cref="ushort"/> is in the allowable range of /// Determines whether the specified <see cref="ushort"/> is in
/// the WebSocket close status code. /// the allowable range of the WebSocket close status code.
/// </summary> /// </summary>
/// <remarks> /// <remarks>
/// Not allowable ranges are the following: /// Unallowable ranges are the following:
/// <list type="bullet"> /// <list type="bullet">
/// <item> /// <item>
/// <term> /// <term>
@ -1298,14 +1298,15 @@ namespace WebSocketSharp
/// </item> /// </item>
/// <item> /// <item>
/// <term> /// <term>
/// Numbers greater than 4999 are out of the reserved close status code ranges. /// Numbers greater than 4999 are out of the reserved
/// close status code ranges.
/// </term> /// </term>
/// </item> /// </item>
/// </list> /// </list>
/// </remarks> /// </remarks>
/// <returns> /// <returns>
/// <c>true</c> if <paramref name="value"/> is in the allowable range of the WebSocket /// <c>true</c> if <paramref name="value"/> is in the allowable
/// close status code; otherwise, <c>false</c>. /// range of the close status code; otherwise, <c>false</c>.
/// </returns> /// </returns>
/// <param name="value"> /// <param name="value">
/// A <see cref="ushort"/> to test. /// A <see cref="ushort"/> to test.