Removed unnecessary dots in the example

This commit is contained in:
Trustin Lee 2009-04-10 01:46:54 +00:00
parent 7de2d0c0df
commit bcd3fd5fe5

View File

@ -108,8 +108,8 @@ import org.jboss.netty.handler.ssl.SslHandler;
* ChannelPipeline p = Channels.pipeline();
* p.addLast("1", new UpstreamHandlerA());
* p.addLast("2", new UpstreamHandlerB());
*.p.addLast("3", new DownstreamHandlerA());
*.p.addLast("4", new DownstreamHandlerB());
* p.addLast("3", new DownstreamHandlerA());
* p.addLast("4", new DownstreamHandlerB());
* p.addLast("5", new UpstreamHandlerX());
* </pre>
* The class whose name starts with {@code Upstream} means it is an upstream