diff --git a/websocket-sharp/WebSocket.cs b/websocket-sharp/WebSocket.cs
index d524f632..7dd909f7 100644
--- a/websocket-sharp/WebSocket.cs
+++ b/websocket-sharp/WebSocket.cs
@@ -3420,23 +3420,35 @@ namespace WebSocketSharp
}
///
- /// Sends the specified of data from
- /// the specified asynchronously using
+ /// Sends the data from asynchronously using
/// the WebSocket connection.
///
///
- /// 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 reads 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 Action<bool> delegate that invokes the method called when
- /// the send is complete. A passed to this delegate will be
- /// true if the send has done with no error.
+ ///
+ /// An Action<bool> delegate or
+ /// if not needed.
+ ///
+ ///
+ /// The delegate invokes the method called when the send is complete.
+ ///
+ ///
+ /// true is passed to the method if the send has done with
+ /// no error; otherwise, false.
+ ///
///
///
/// The current state of the connection is not Open.