diff --git a/websocket-sharp/Server/WebSocketServer.cs b/websocket-sharp/Server/WebSocketServer.cs
index c4382cd4..fd8f88b4 100644
--- a/websocket-sharp/Server/WebSocketServer.cs
+++ b/websocket-sharp/Server/WebSocketServer.cs
@@ -1064,7 +1064,7 @@ namespace WebSocketSharp.Server
///
///
/// is converted to a URL-decoded string and
- /// / is trimmed from the end of the converted string if any.
+ /// '/' is trimmed from the end of the converted string if any.
///
///
/// A that represents an absolute path to
@@ -1075,17 +1075,21 @@ namespace WebSocketSharp.Server
/// A Func<TBehavior> delegate.
///
///
- /// It invokes the method called for creating
- /// a new session instance for the service.
+ /// It invokes the method called for creating a new session
+ /// instance for the service.
///
///
- /// The method must create a new instance of
- /// the specified behavior class and return it.
+ /// The method must create a new instance of the specified
+ /// behavior class and return it.
///
///
///
- /// The type of the behavior for the service. It must inherit
- /// the class.
+ ///
+ /// The type of the behavior for the service.
+ ///
+ ///
+ /// It must inherit the class.
+ ///
///
///
///