diff --git a/websocket-sharp/Server/WebSocketSessionManager.cs b/websocket-sharp/Server/WebSocketSessionManager.cs
index b5a59a96..3b70eeac 100644
--- a/websocket-sharp/Server/WebSocketSessionManager.cs
+++ b/websocket-sharp/Server/WebSocketSessionManager.cs
@@ -511,19 +511,33 @@ namespace WebSocketSharp.Server
}
///
- /// Sends text 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.
///
///
/// A that represents the text 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 .
+ ///
+ ///
+ /// could not be UTF-8-encoded.
+ ///
public void BroadcastAsync (string data, Action completed)
{
if (_state != ServerState.Start) {