@@ -32,7 +32,7 @@ extension WebSocket {
3232 /// - Parameters:
3333 /// - channel: NIO channel which the client will use to communicate.
3434 /// - onUpgrade: An escaping closure to be executed the channel is configured with the WebSocket handlers.
35- /// - Returns: An future which completes when the WebSocket connection to the server is established.
35+ /// - Returns: A future which completes when the WebSocket connection to the server is established.
3636 @preconcurrency
3737 public static func client(
3838 on channel: Channel ,
@@ -46,7 +46,7 @@ extension WebSocket {
4646 /// - channel: NIO channel which the client/server will use to communicate.
4747 /// - config: Configuration for the client channel handlers.
4848 /// - onUpgrade: An escaping closure to be executed the channel is configured with the WebSocket handlers.
49- /// - Returns: An future which completes when the WebSocket connection to the server is established.
49+ /// - Returns: A future which completes when the WebSocket connection to the server is established.
5050 @preconcurrency
5151 public static func client(
5252 on channel: Channel ,
@@ -60,7 +60,7 @@ extension WebSocket {
6060 /// - Parameters:
6161 /// - channel: NIO channel which the server will use to communicate.
6262 /// - onUpgrade: An escaping closure to be executed the channel is configured with the WebSocket handlers.
63- /// - Returns: An future which completes when the WebSocket connection to the server is established.
63+ /// - Returns: A future which completes when the WebSocket connection to the server is established.
6464 @preconcurrency
6565 public static func server(
6666 on channel: Channel ,
@@ -74,7 +74,7 @@ extension WebSocket {
7474 /// - channel: NIO channel which the server will use to communicate.
7575 /// - config: Configuration for the server channel handlers.
7676 /// - onUpgrade: An escaping closure to be executed the channel is configured with the WebSocket handlers.
77- /// - Returns: An future which completes when the WebSocket connection to the server is established.
77+ /// - Returns: A future which completes when the WebSocket connection to the server is established.
7878 @preconcurrency
7979 public static func server(
8080 on channel: Channel ,
0 commit comments