diff --git a/websocket-sharp/Server/WebSocketServer.cs b/websocket-sharp/Server/WebSocketServer.cs
index c4226220..4d01351e 100644
--- a/websocket-sharp/Server/WebSocketServer.cs
+++ b/websocket-sharp/Server/WebSocketServer.cs
@@ -1133,24 +1133,26 @@ namespace WebSocketSharp.Server
}
///
- /// Adds a WebSocket service with the specified behavior and
- /// .
+ /// Adds a WebSocket service with the specified behavior and path.
///
- ///
- /// is converted to a URL-decoded string and
- /// '/' is trimmed from the end of the converted string if any.
- ///
///
- /// A that represents an absolute path to
- /// the service to add.
+ ///
+ /// A that represents an absolute path to
+ /// the service to add.
+ ///
+ ///
+ /// / is trimmed from the end of the string if present.
+ ///
///
///
///
/// The type of the behavior for the service.
///
///
- /// It must inherit the class and
- /// have a public parameterless constructor.
+ /// It must inherit the class.
+ ///
+ ///
+ /// And also, it must have a public parameterless constructor.
///
///
///