[Modify] Edit it

This commit is contained in:
sta 2021-11-12 19:44:49 +09:00
parent 11141253f1
commit e01148acff

View File

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