diff --git a/websocket-sharp/Server/WebSocketServiceManager.cs b/websocket-sharp/Server/WebSocketServiceManager.cs index 39279f9b..fcd4f388 100644 --- a/websocket-sharp/Server/WebSocketServiceManager.cs +++ b/websocket-sharp/Server/WebSocketServiceManager.cs @@ -470,8 +470,8 @@ namespace WebSocketSharp.Server #region Public Methods /// - /// Adds a WebSocket service with the specified behavior, - /// , and . + /// Adds a WebSocket service with the specified behavior, path, + /// and delegate. /// /// /// @@ -488,14 +488,20 @@ namespace WebSocketSharp.Server /// if not needed. /// /// - /// That delegate invokes the method called for initializing + /// The delegate invokes the method called when initializing /// a new session instance for the service. /// /// /// - /// The type of the behavior for the service. It must inherit - /// the class and it must have - /// a public parameterless constructor. + /// + /// The type of the behavior for the service. + /// + /// + /// It must inherit the class. + /// + /// + /// And also, it must have a public parameterless constructor. + /// /// /// /// is .