[Modify] Edit it

This commit is contained in:
sta 2021-11-10 19:48:43 +09:00
parent cab8ce2ceb
commit f7bb97123e

View File

@ -557,13 +557,13 @@ namespace WebSocketSharp.Server
} }
/// <summary> /// <summary>
/// Sends <paramref name="data"/> to every client in the WebSocket service. /// Sends the specified data to every client in the WebSocket service.
/// </summary> /// </summary>
/// <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>
/// <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"/>.