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) |
* +------------------------------------------------------------------+
* </pre>
* Please note that a upstream event is processed by from the first upstream
* handler to the last upstream handler (i.e. to the next) and a downstream
* event is processed by from the last downstream handler to the first
* downstream handler (i.e. to the previous).
* Please note that a upstream event flows from the first upstream handler
* to the last upstream handler (i.e. to the next) and a downstream event
* flows from the last downstream handler to the first downstream handler
* (i.e. to the previous).
*
* <h3>Building a pipeline</h3>
* <p>