We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ae52491 commit e86dcc9Copy full SHA for e86dcc9
Sources/AsyncHTTPClient/ConnectionPool/HTTP2/HTTP2Connection.swift
@@ -128,7 +128,7 @@ final class HTTP2Connection {
128
self.multiplexer.createStreamChannel(promise: createStreamChannelPromise) { channel -> EventLoopFuture<Void> in
129
do {
130
// We only support http/2 over an https connection – using the Application-Layer
131
- // Protocol Negotiation (ALPN). For this reason it is save to fix this to `.https`.
+ // Protocol Negotiation (ALPN). For this reason it is safe to fix this to `.https`.
132
let translate = HTTP2FramePayloadToHTTP1ClientCodec(httpProtocol: .https)
133
let handler = HTTP2ClientRequestHandler(eventLoop: channel.eventLoop)
134
0 commit comments