From a213fbba690cd4cd86c2c9645cd28cd2c225f0e5 Mon Sep 17 00:00:00 2001 From: Norman Maurer Date: Fri, 14 Dec 2018 11:08:43 +0100 Subject: [PATCH] Fix typo in comment introduced by 83ab4ef5e372e0a9b87fdadd4077a551af5b2e64 --- .../io/netty/handler/codec/http2/Http2ConnectionHandler.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/codec-http2/src/main/java/io/netty/handler/codec/http2/Http2ConnectionHandler.java b/codec-http2/src/main/java/io/netty/handler/codec/http2/Http2ConnectionHandler.java index 4f66e918d5..e945586cd9 100644 --- a/codec-http2/src/main/java/io/netty/handler/codec/http2/Http2ConnectionHandler.java +++ b/codec-http2/src/main/java/io/netty/handler/codec/http2/Http2ConnectionHandler.java @@ -531,7 +531,7 @@ public class Http2ConnectionHandler extends ByteToMessageDecoder implements Http // Discard bytes of the cumulation buffer if needed. discardSomeReadBytes(); - // Ensure we never stale the HTTP/2 Channel. Flow-control is enforced by HTTP/2. + // Ensure we never stall the HTTP/2 Channel. Flow-control is enforced by HTTP/2. // // See https://tools.ietf.org/html/rfc7540#section-5.2.2 if (!ctx.channel().config().isAutoRead()) {