diff --git a/websocket-sharp/Server/HttpServer.cs b/websocket-sharp/Server/HttpServer.cs
index f1f9ead6..e9ab74fd 100644
--- a/websocket-sharp/Server/HttpServer.cs
+++ b/websocket-sharp/Server/HttpServer.cs
@@ -466,16 +466,27 @@ namespace WebSocketSharp.Server
}
///
- /// Gets or sets a value indicating whether the server is allowed to be bound to
- /// an address that is already in use.
+ /// Gets or sets a value indicating whether the server is allowed to
+ /// be bound to an address that is already in use.
///
///
- /// If you would like to resolve to wait for socket in TIME_WAIT state,
- /// you should set this property to true.
+ ///
+ /// You should set this property to true if you would
+ /// like to resolve to wait for socket in TIME_WAIT state.
+ ///
+ ///
+ /// The set operation does nothing if the server has already
+ /// started or it is shutting down.
+ ///
///
///
- /// true if the server is allowed to be bound to an address that is already in use;
- /// otherwise, false. The default value is false.
+ ///
+ /// true if the server is allowed to be bound to an address
+ /// that is already in use; otherwise, false.
+ ///
+ ///
+ /// The default value is false.
+ ///
///
public bool ReuseAddress {
get {