From 612e6ff9af573ffea16d5fa51d9eb9c061c88e8a Mon Sep 17 00:00:00 2001 From: Veebs Date: Mon, 24 Sep 2012 04:05:46 -0700 Subject: [PATCH] Corrected typo --- .../handler/codec/spdy/SpdyHttpResponseStreamIdHandler.java | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/src/main/java/org/jboss/netty/handler/codec/spdy/SpdyHttpResponseStreamIdHandler.java b/src/main/java/org/jboss/netty/handler/codec/spdy/SpdyHttpResponseStreamIdHandler.java index 1757615544..30a8c03cad 100644 --- a/src/main/java/org/jboss/netty/handler/codec/spdy/SpdyHttpResponseStreamIdHandler.java +++ b/src/main/java/org/jboss/netty/handler/codec/spdy/SpdyHttpResponseStreamIdHandler.java @@ -25,10 +25,8 @@ import org.jboss.netty.handler.codec.http.HttpMessage; import org.jboss.netty.handler.codec.http.HttpResponse; /** - * {@link SimpleChannelHandler} which will take care of add the right {@link SpdyHttpHeaders#Names#STREAM_ID} to the - * {@link HttpResponse} if non is in there. This makes it possible to just re-use plan handlers that was used with HTTP - * only before. - * + * {@link SimpleChannelHandler} that takes care of adding the right {@link SpdyHttpHeaders#Names#STREAM_ID} to the + * {@link HttpResponse} if one is not present. This makes it possible to just re-use plan handlers current used for HTTP. */ public class SpdyHttpResponseStreamIdHandler extends SimpleChannelHandler { private static final Integer NO_ID = -1;