diff --git a/websocket-sharp/Server/WebSocketSessionManager.cs b/websocket-sharp/Server/WebSocketSessionManager.cs
index 8a616a8e..a0fa6cce 100644
--- a/websocket-sharp/Server/WebSocketSessionManager.cs
+++ b/websocket-sharp/Server/WebSocketSessionManager.cs
@@ -657,15 +657,19 @@ namespace WebSocketSharp.Server
}
///
- /// Sends the specified of data from
- /// the specified asynchronously to
+ /// Sends the data from asynchronously to
/// every client in the WebSocket service.
///
///
- /// This method does not wait for the send to be complete.
+ ///
+ /// The data is sent as the binary data.
+ ///
+ ///
+ /// This method does not wait for the send to be complete.
+ ///
///
///
- /// A from which to read the binary data to send.
+ /// A instance from which to read the data to send.
///
///
/// An that specifies the number of bytes to send.
@@ -676,7 +680,7 @@ namespace WebSocketSharp.Server
/// if not needed.
///
///
- /// That delegate invokes the method called when the send is complete.
+ /// The delegate invokes the method called when the send is complete.
///
///
///