diff --git a/websocket-sharp/WebSocket.cs b/websocket-sharp/WebSocket.cs
index b44cea36..b9813d98 100644
--- a/websocket-sharp/WebSocket.cs
+++ b/websocket-sharp/WebSocket.cs
@@ -596,12 +596,24 @@ namespace WebSocketSharp
}
///
- /// Gets or sets the wait time for the response to the Ping or Close.
+ /// Gets or sets the time to wait for the response to the ping or close.
///
+ ///
+ /// The set operation does nothing if the connection has already been
+ /// established or it is closing.
+ ///
///
- /// A that represents the wait time. The default value is the same as
- /// 5 seconds, or 1 second if the is used in a server.
+ ///
+ /// A to wait for the response.
+ ///
+ ///
+ /// The default value is the same as 5 seconds if the instance is
+ /// a client.
+ ///
///
+ ///
+ /// The value specified for a set operation is zero or less.
+ ///
public TimeSpan WaitTime {
get {
return _waitTime;