Typo in StringDecoder Javadoc

This commit is contained in:
Trustin Lee 2008-11-14 06:07:56 +00:00
parent b876bd8cec
commit 8b3956b238

View File

@ -47,7 +47,7 @@ import org.jboss.netty.handler.codec.frame.FrameDecoder;
* {@link ChannelPipeline} pipeline = ...;
*
* // Decoders
* pipeline.addLast("frameDecoder", new {@link DelimiterBasedFrameDecoder}({@link Delimiters#lineDelimiter()}));
* pipeline.addLast("frameDecoder", new {@link DelimiterBasedFrameDecoder}(80, {@link Delimiters#lineDelimiter()}));
* pipeline.addLast("stringDecoder", new {@link StringDecoder}("UTF-8"));
*
* // Encoder