[Modify] Edit it

This commit is contained in:
sta 2021-11-13 21:54:07 +09:00
parent ebca14a624
commit 7f7498e8e8

View File

@ -722,14 +722,14 @@ namespace WebSocketSharp.Server
} }
/// <summary> /// <summary>
/// Sends <paramref name="data"/> asynchronously to every client in /// Sends the specified data asynchronously to every client in
/// the WebSocket service. /// the WebSocket service.
/// </summary> /// </summary>
/// <remarks> /// <remarks>
/// This method does not wait for the send to be complete. /// This method does not wait for the send to be complete.
/// </remarks> /// </remarks>
/// <param name="data"> /// <param name="data">
/// A <see cref="string"/> that represents the text data to send. /// A <see cref="string"/> that specifies the text data to send.
/// </param> /// </param>
/// <param name="completed"> /// <param name="completed">
/// <para> /// <para>
@ -741,7 +741,7 @@ namespace WebSocketSharp.Server
/// </para> /// </para>
/// </param> /// </param>
/// <exception cref="InvalidOperationException"> /// <exception cref="InvalidOperationException">
/// The current state of the manager is not Start. /// The current state of the service is not Start.
/// </exception> /// </exception>
/// <exception cref="ArgumentNullException"> /// <exception cref="ArgumentNullException">
/// <paramref name="data"/> is <see langword="null"/>. /// <paramref name="data"/> is <see langword="null"/>.