diff --git a/websocket-sharp/Server/WebSocketBehavior.cs b/websocket-sharp/Server/WebSocketBehavior.cs
index 05a00928..0b93df41 100644
--- a/websocket-sharp/Server/WebSocketBehavior.cs
+++ b/websocket-sharp/Server/WebSocketBehavior.cs
@@ -451,9 +451,9 @@ namespace WebSocketSharp.Server
/// An array of that represents the binary data to send.
///
///
- /// An Action<bool> delegate that references the method(s) called when the send is
- /// complete. A passed to this delegate is true if the send is
- /// complete successfully.
+ /// An Action<bool> delegate that references the method(s) called when
+ /// the send is complete. A passed to this delegate is true
+ /// if the send is complete successfully.
///
protected void SendAsync (byte[] data, Action completed)
{
@@ -462,8 +462,8 @@ namespace WebSocketSharp.Server
}
///
- /// Sends the specified as a binary data asynchronously to the client
- /// on the current session.
+ /// Sends the specified as a binary data asynchronously
+ /// to the client on the current session.
///
///
///
@@ -477,9 +477,9 @@ namespace WebSocketSharp.Server
/// A that represents the file to send.
///
///
- /// An Action<bool> delegate that references the method(s) called when the send is
- /// complete. A passed to this delegate is true if the send is
- /// complete successfully.
+ /// An Action<bool> delegate that references the method(s) called when
+ /// the send is complete. A passed to this delegate is true
+ /// if the send is complete successfully.
///
protected void SendAsync (FileInfo file, Action completed)
{
@@ -502,9 +502,9 @@ namespace WebSocketSharp.Server
/// A that represents the text data to send.
///
///
- /// An Action<bool> delegate that references the method(s) called when the send is
- /// complete. A passed to this delegate is true if the send is
- /// complete successfully.
+ /// An Action<bool> delegate that references the method(s) called when
+ /// the send is complete. A passed to this delegate is true
+ /// if the send is complete successfully.
///
protected void SendAsync (string data, Action completed)
{
@@ -513,8 +513,8 @@ namespace WebSocketSharp.Server
}
///
- /// Sends a binary data from the specified asynchronously to the client
- /// on the current session.
+ /// Sends a binary data from the specified asynchronously
+ /// to the client on the current session.
///
///
///
@@ -531,9 +531,9 @@ namespace WebSocketSharp.Server
/// An that represents the number of bytes to send.
///
///
- /// An Action<bool> delegate that references the method(s) called when the send is
- /// complete. A passed to this delegate is true if the send is
- /// complete successfully.
+ /// An Action<bool> delegate that references the method(s) called when
+ /// the send is complete. A passed to this delegate is true
+ /// if the send is complete successfully.
///
protected void SendAsync (Stream stream, int length, Action completed)
{
diff --git a/websocket-sharp/WebSocket.cs b/websocket-sharp/WebSocket.cs
index ad976802..21a11420 100644
--- a/websocket-sharp/WebSocket.cs
+++ b/websocket-sharp/WebSocket.cs
@@ -1981,9 +1981,9 @@ namespace WebSocketSharp
/// An array of that represents the binary data to send.
///
///
- /// An Action<bool> delegate that references the method(s) called when the send is
- /// complete. A passed to this delegate is true if the send is
- /// complete successfully.
+ /// An Action<bool> delegate that references the method(s) called when
+ /// the send is complete. A passed to this delegate is true
+ /// if the send is complete successfully.
///
public void SendAsync (byte[] data, Action completed)
{
@@ -2009,9 +2009,9 @@ namespace WebSocketSharp
/// A that represents the file to send.
///
///
- /// An Action<bool> delegate that references the method(s) called when the send is
- /// complete. A passed to this delegate is true if the send is
- /// complete successfully.
+ /// An Action<bool> delegate that references the method(s) called when
+ /// the send is complete. A passed to this delegate is true
+ /// if the send is complete successfully.
///
public void SendAsync (FileInfo file, Action completed)
{
@@ -2036,9 +2036,9 @@ namespace WebSocketSharp
/// A that represents the text data to send.
///
///
- /// An Action<bool> delegate that references the method(s) called when the send is
- /// complete. A passed to this delegate is true if the send is
- /// complete successfully.
+ /// An Action<bool> delegate that references the method(s) called when
+ /// the send is complete. A passed to this delegate is true
+ /// if the send is complete successfully.
///
public void SendAsync (string data, Action completed)
{
@@ -2067,9 +2067,9 @@ namespace WebSocketSharp
/// An that represents the number of bytes to send.
///
///
- /// An Action<bool> delegate that references the method(s) called when the send is
- /// complete. A passed to this delegate is true if the send is
- /// complete successfully.
+ /// An Action<bool> delegate that references the method(s) called when
+ /// the send is complete. A passed to this delegate is true
+ /// if the send is complete successfully.
///
public void SendAsync (Stream stream, int length, Action completed)
{