diff --git a/websocket-sharp/WebSocket.cs b/websocket-sharp/WebSocket.cs
index 6e307cb7..e7b0774f 100644
--- a/websocket-sharp/WebSocket.cs
+++ b/websocket-sharp/WebSocket.cs
@@ -3369,8 +3369,8 @@ namespace WebSocketSharp
}
///
- /// Sends the specified asynchronously using
- /// the WebSocket connection.
+ /// Sends asynchronously using the WebSocket
+ /// connection.
///
///
/// This method does not wait for the send to be complete.
@@ -3379,9 +3379,17 @@ namespace WebSocketSharp
/// A that represents the text data 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.