diff --git a/websocket-sharp/Server/WebSocketServiceManager.cs b/websocket-sharp/Server/WebSocketServiceManager.cs
index db09af5d..42f1e3e1 100644
--- a/websocket-sharp/Server/WebSocketServiceManager.cs
+++ b/websocket-sharp/Server/WebSocketServiceManager.cs
@@ -664,28 +664,30 @@ namespace WebSocketSharp.Server
}
///
- /// Sends the specified of data from
- /// the specified asynchronously to
+ /// Sends the data from asynchronously to
/// every client in the WebSocket services.
///
///
- /// 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
- /// read and send.
+ /// An that specifies the number of bytes to send.
///
///
///
- /// An delegate or
- /// if not needed.
+ /// An delegate or
+ /// 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.
///
///
///