diff --git a/websocket-sharp/Server/HttpServer.cs b/websocket-sharp/Server/HttpServer.cs
index f15cdc8c..d8d2c250 100644
--- a/websocket-sharp/Server/HttpServer.cs
+++ b/websocket-sharp/Server/HttpServer.cs
@@ -1115,17 +1115,29 @@ namespace WebSocketSharp.Server
}
///
- /// Stops receiving the incoming requests, and closes the connections with
- /// the specified and for
- /// the WebSocket connection close.
+ /// Stops receiving incoming requests and closes each connection.
///
+ ///
+ /// This method does nothing if the server is not started,
+ /// it is shutting down, or it has already stopped.
+ ///
///
- /// One of the enum values that represents
- /// the status code indicating the reason for the WebSocket connection close.
+ ///
+ /// One of the enum values.
+ ///
+ ///
+ /// It represents the status code indicating the reason for
+ /// the WebSocket connection close.
+ ///
///
///
- /// A that represents the reason for the WebSocket
- /// connection close. The size must be 123 bytes or less.
+ ///
+ /// A that represents the reason for
+ /// the WebSocket connection close.
+ ///
+ ///
+ /// The size must be 123 bytes or less in UTF-8.
+ ///
///
///
/// The size of is greater than 123 bytes.