diff --git a/websocket-sharp/WebSocket.cs b/websocket-sharp/WebSocket.cs
index 59ae50b5..d2e5a399 100644
--- a/websocket-sharp/WebSocket.cs
+++ b/websocket-sharp/WebSocket.cs
@@ -2502,16 +2502,34 @@ namespace WebSocketSharp
}
///
- /// Accepts the WebSocket handshake request asynchronously.
+ /// Accepts the handshake request asynchronously.
///
///
///
- /// This method does not wait for the accept to be complete.
+ /// This method does not wait for the accept process to be complete.
///
///
- /// This method is not available in a client.
+ /// This method does nothing if the handshake request has already been
+ /// accepted.
///
///
+ ///
+ ///
+ /// This instance is a client.
+ ///
+ ///
+ /// -or-
+ ///
+ ///
+ /// The close process is in progress.
+ ///
+ ///
+ /// -or-
+ ///
+ ///
+ /// The connection has already been closed.
+ ///
+ ///
public void AcceptAsync ()
{
if (_client) {