diff --git a/websocket-sharp/Ext.cs b/websocket-sharp/Ext.cs
index 8f081f70..495237eb 100644
--- a/websocket-sharp/Ext.cs
+++ b/websocket-sharp/Ext.cs
@@ -1303,28 +1303,36 @@ namespace WebSocketSharp
}
///
- /// Determines whether the specified is in
- /// the allowable range of the WebSocket close status code.
+ /// Determines whether the specified is in the
+ /// range of the status code for the WebSocket connection close.
///
///
- /// Unallowable ranges are the following:
+ ///
+ /// The ranges for the status code for the close are the following:
+ ///
///
/// -
///
- /// Numbers in the range 0-999 are not used.
+ /// 1000-2999: These numbers are reserved for definition by
+ /// the WebSocket protocol.
///
///
/// -
///
- /// Numbers greater than 4999 are out of the reserved
- /// close status code ranges.
+ /// 3000-3999: These numbers are reserved for use by libraries,
+ /// frameworks, and applications.
+ ///
+ ///
+ /// -
+ ///
+ /// 4000-4999: These numbers are reserved for private use.
///
///
///
///
///
- /// true if is in the allowable
- /// range of the close status code; otherwise, false.
+ /// true if is in the range of
+ /// the status code for the close; otherwise, false.
///
///
/// A to test.