Skip to content

Commit f7fca67

Browse files
author
Garrett Moseke
authored
chore: typos
1 parent 15a5084 commit f7fca67

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Sources/GraphQLTransportWS/Server.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import GraphQLRxSwift
66
import NIO
77
import RxSwift
88

9-
/// Server implements the server-side portion of the protocol, allowing a few callbacks for customization. 0 or 1 subscriptions per connection and no more.
9+
/// Server implements the server-side portion of the protocol, allowing a few callbacks for customization. Handles 0 or 1 subscriptions per connection and no more.
1010
///
1111
/// By default, there are no authorization checks
1212
public class Server<InitPayload: Equatable & Codable> {
@@ -65,7 +65,7 @@ public class Server<InitPayload: Equatable & Codable> {
6565
return
6666
}
6767

68-
// handle incoing message
68+
// handle incoming message
6969
switch request.type {
7070
case .connectionInit:
7171
guard let connectionInitRequest = try? self.decoder.decode(ConnectionInitRequest<InitPayload>.self, from: data) else {

0 commit comments

Comments
 (0)