Simplified a sentence in ChannelPipeline explanation

This commit is contained in:
Trustin Lee 2008-09-03 03:10:00 +00:00
parent 3e699b7f4a
commit 3e21792b12

View File

@ -94,10 +94,10 @@ import org.jboss.netty.handler.ssl.SslHandler;
* | I/O Threads (Transport Implementation) | * | I/O Threads (Transport Implementation) |
* +------------------------------------------------------------------+ * +------------------------------------------------------------------+
* </pre> * </pre>
* Please note that a upstream event is processed by from the first upstream * Please note that a upstream event flows from the first upstream handler
* handler to the last upstream handler (i.e. to the next) and a downstream * to the last upstream handler (i.e. to the next) and a downstream event
* event is processed by from the last downstream handler to the first * flows from the last downstream handler to the first downstream handler
* downstream handler (i.e. to the previous). * (i.e. to the previous).
* *
* <h3>Building a pipeline</h3> * <h3>Building a pipeline</h3>
* <p> * <p>