[Modify] Edit it

This commit is contained in:
sta 2017-07-21 16:34:13 +09:00
parent 6965980353
commit 13f7da800e

View File

@ -1064,7 +1064,7 @@ namespace WebSocketSharp.Server
/// </summary>
/// <remarks>
/// <paramref name="path"/> is converted to a URL-decoded string and
/// / is trimmed from the end of the converted string if any.
/// '/' is trimmed from the end of the converted string if any.
/// </remarks>
/// <param name="path">
/// A <see cref="string"/> that represents an absolute path to
@ -1075,17 +1075,21 @@ namespace WebSocketSharp.Server
/// A <c>Func&lt;TBehavior&gt;</c> delegate.
/// </para>
/// <para>
/// It invokes the method called for creating
/// a new session instance for the service.
/// It invokes the method called for creating a new session
/// instance for the service.
/// </para>
/// <para>
/// The method must create a new instance of
/// the specified behavior class and return it.
/// The method must create a new instance of the specified
/// behavior class and return it.
/// </para>
/// </param>
/// <typeparam name="TBehavior">
/// The type of the behavior for the service. It must inherit
/// the <see cref="WebSocketBehavior"/> class.
/// <para>
/// The type of the behavior for the service.
/// </para>
/// <para>
/// It must inherit the <see cref="WebSocketBehavior"/> class.
/// </para>
/// </typeparam>
/// <exception cref="ArgumentNullException">
/// <para>