diff --git a/websocket-sharp/Server/WebSocketServer.cs b/websocket-sharp/Server/WebSocketServer.cs
index 2d68ffd0..665a5dbe 100644
--- a/websocket-sharp/Server/WebSocketServer.cs
+++ b/websocket-sharp/Server/WebSocketServer.cs
@@ -1258,25 +1258,24 @@ namespace WebSocketSharp.Server
}
///
- /// Removes a WebSocket service with the specified .
+ /// Removes a WebSocket service with the specified path.
///
///
- ///
- /// is converted to a URL-decoded string and
- /// '/' is trimmed from the end of the converted string if any.
- ///
- ///
- /// The service is stopped with close status 1001 (going away)
- /// if it has already started.
- ///
+ /// The service is stopped with close status 1001 (going away)
+ /// if it has already started.
///
///
/// true if the service is successfully found and removed;
/// otherwise, false.
///
///
- /// A that represents an absolute path to
- /// the service to remove.
+ ///
+ /// A that represents an absolute path to
+ /// the service to remove.
+ ///
+ ///
+ /// / is trimmed from the end of the string if present.
+ ///
///
///
/// is .