From f1bba73b22478eef7b42340fa1cc58d793e4a8e3 Mon Sep 17 00:00:00 2001 From: Trustin Lee Date: Fri, 16 Apr 2010 06:44:48 +0000 Subject: [PATCH] Typo in the comment --- .../org/jboss/netty/handler/codec/http/HttpClientCodec.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/org/jboss/netty/handler/codec/http/HttpClientCodec.java b/src/main/java/org/jboss/netty/handler/codec/http/HttpClientCodec.java index 85b62a783c..989af7055e 100644 --- a/src/main/java/org/jboss/netty/handler/codec/http/HttpClientCodec.java +++ b/src/main/java/org/jboss/netty/handler/codec/http/HttpClientCodec.java @@ -128,7 +128,7 @@ public class HttpClientCodec implements ChannelUpstreamHandler, return true; } - // Successful CONNECT result in empty body. + // Successful CONNECT request results in a response with empty body. if (((HttpResponse) msg).getStatus().getCode() == 200) { if (HttpMethod.CONNECT.equals(method)) { // Proxy connection established - Not HTTP anymore.