diff --git a/websocket-sharp/Server/WebSocketServer.cs b/websocket-sharp/Server/WebSocketServer.cs
index 7bfda9d8..5a2230d7 100644
--- a/websocket-sharp/Server/WebSocketServer.cs
+++ b/websocket-sharp/Server/WebSocketServer.cs
@@ -902,19 +902,18 @@ namespace WebSocketSharp.Server
}
///
- /// Adds a WebSocket service with the specified behavior and .
+ /// Adds a WebSocket service with the specified behavior and
+ /// .
///
- ///
- /// This method converts to URL-decoded string,
- /// and removes '/' from tail end of .
- ///
///
- /// A that represents the absolute path to the service to add.
+ /// A that represents an absolute path to
+ /// the service. It will be converted to a URL-decoded string,
+ /// and will be removed '/' from tail end if any.
///
///
- /// The type of the behavior of the service to add. The TBehaviorWithNew must inherit
- /// the class, and must have a public parameterless
- /// constructor.
+ /// The type of the behavior for the service. It must inherit
+ /// the class, and must have
+ /// a public parameterless constructor.
///
public void AddWebSocketService (string path)
where TBehaviorWithNew : WebSocketBehavior, new ()