diff --git a/websocket-sharp/WebSocket.cs b/websocket-sharp/WebSocket.cs
index 249c3d54..52be77cd 100644
--- a/websocket-sharp/WebSocket.cs
+++ b/websocket-sharp/WebSocket.cs
@@ -2802,14 +2802,14 @@ namespace WebSocketSharp
}
///
- /// Sends the specified as the binary data
- /// asynchronously using the WebSocket connection.
+ /// Sends the specified file as the binary data asynchronously using
+ /// the WebSocket connection.
///
///
/// This method does not wait for the send to be complete.
///
///
- /// A that represents the file to send.
+ /// A that specifies a file to send.
///
///
/// An Action<bool> delegate that invokes the method called when
@@ -2823,7 +2823,15 @@ namespace WebSocketSharp
/// is .
///
///
- /// cannot be opened to read.
+ ///
+ /// The file does not exist.
+ ///
+ ///
+ /// -or-
+ ///
+ ///
+ /// The file could not be opened.
+ ///
///
public void SendAsync (FileInfo fileInfo, Action completed)
{