Skip to content

Commit f300d73

Browse files
committed
[Modify] Edit it
1 parent 09cb095 commit f300d73

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

websocket-sharp/Server/WebSocketServer.cs

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -131,22 +131,22 @@ public WebSocketServer (int port)
131131
}
132132

133133
/// <summary>
134-
/// Initializes a new instance of the <see cref="WebSocketServer"/> class with
135-
/// the specified WebSocket URL.
134+
/// Initializes a new instance of the <see cref="WebSocketServer"/> class
135+
/// with the specified WebSocket URL.
136136
/// </summary>
137137
/// <remarks>
138138
/// <para>
139-
/// An instance initialized by this constructor listens for the incoming connection requests
140-
/// on the host name and port in <paramref name="url"/>.
139+
/// The new instance listens for the incoming handshake requests on
140+
/// the host name and port of <paramref name="url"/>.
141141
/// </para>
142142
/// <para>
143-
/// If <paramref name="url"/> doesn't include a port, either port 80 or 443 is used on
144-
/// which to listen. It's determined by the scheme (ws or wss) in <paramref name="url"/>.
145-
/// (Port 80 if the scheme is ws.)
143+
/// If <paramref name="url"/> includes no port, either port 80 or 443 is
144+
/// used on which to listen. It is determined by the scheme (ws or wss) of
145+
/// <paramref name="url"/>.
146146
/// </para>
147147
/// </remarks>
148148
/// <param name="url">
149-
/// A <see cref="string"/> that represents the WebSocket URL of the server.
149+
/// A <see cref="string"/> that represents the WebSocket URL for the server.
150150
/// </param>
151151
/// <exception cref="ArgumentNullException">
152152
/// <paramref name="url"/> is <see langword="null"/>.

0 commit comments

Comments
 (0)