diff --git a/websocket-sharp/Server/WebSocketSessionManager.cs b/websocket-sharp/Server/WebSocketSessionManager.cs
index 7e649b31..1d2dc604 100644
--- a/websocket-sharp/Server/WebSocketSessionManager.cs
+++ b/websocket-sharp/Server/WebSocketSessionManager.cs
@@ -557,13 +557,21 @@ namespace WebSocketSharp.Server
}
///
- /// Sends a Ping to every client in the WebSocket service.
+ /// Sends a ping to every client in the WebSocket service.
///
///
- /// A Dictionary<string, bool> that contains a collection of pairs of
- /// a session ID and a value indicating whether the manager received a Pong from
- /// each client in a time.
+ ///
+ /// A Dictionary<string, bool>.
+ ///
+ ///
+ /// It represents a collection of pairs of a session ID and
+ /// a value indicating whether a pong has been received from
+ /// its client within a time.
+ ///
///
+ ///
+ /// The current state of the manager is not Start.
+ ///
public Dictionary Broadping ()
{
if (_state != ServerState.Start) {