diff --git a/websocket-sharp/WebSocket.cs b/websocket-sharp/WebSocket.cs
index 43f71a89..e9c655fc 100644
--- a/websocket-sharp/WebSocket.cs
+++ b/websocket-sharp/WebSocket.cs
@@ -2693,11 +2693,10 @@ namespace WebSocketSharp
}
///
- /// Sends the specified as the binary data using
- /// the WebSocket connection.
+ /// Sends the specified file as the binary data using the WebSocket connection.
///
///
- /// A that represents the file to send.
+ /// A that specifies the file to send.
///
///
/// The current state of the connection is not Open.
@@ -2706,7 +2705,15 @@ namespace WebSocketSharp
/// is .
///
///
- /// cannot be opened to read.
+ ///
+ /// The file does not exist.
+ ///
+ ///
+ /// -or-
+ ///
+ ///
+ /// The file could not be opened.
+ ///
///
public void Send (FileInfo fileInfo)
{