diff --git a/websocket-sharp/Server/WebSocketSessionManager.cs b/websocket-sharp/Server/WebSocketSessionManager.cs
index 787274fc..1890bf2d 100644
--- a/websocket-sharp/Server/WebSocketSessionManager.cs
+++ b/websocket-sharp/Server/WebSocketSessionManager.cs
@@ -453,19 +453,32 @@ namespace WebSocketSharp.Server
}
///
- /// Sends binary asynchronously to every client in
- /// the WebSocket service.
+ /// Sends the specified asynchronously to
+ /// every client in the WebSocket service.
///
///
- /// This method doesn't wait for the send to be complete.
+ /// This method does not wait for the send to be complete.
///
///
- /// An array of that represents the binary data to send.
+ /// An array of that represents
+ /// the binary data to send.
///
///
- /// An delegate that references the method(s) called when
- /// the send is complete.
+ ///
+ /// An delegate or
+ /// if not needed.
+ ///
+ ///
+ /// That delegate invokes the method called when
+ /// the send is complete.
+ ///
///
+ ///
+ /// The current state of the manager is not Start.
+ ///
+ ///
+ /// is .
+ ///
public void BroadcastAsync (byte[] data, Action completed)
{
if (_state != ServerState.Start) {