Fix up ChannelPipeline javadocs by add lost "don't "

This commit is contained in:
tsingxu 2013-07-22 11:32:30 +08:00 committed by Norman Maurer
parent f478fcd3b0
commit 125070958d

View File

@ -117,7 +117,7 @@ import java.util.NoSuchElementException;
* <ul>
* <li>3 and 4 don't implement {@link ChannelInboundHandler}, and therefore the actual evaluation order of an inbound
* event will be: 1, 2, and 5.</li>
* <li>1 and 2 implement {@link ChannelOutboundHandler}, and therefore the actual evaluation order of a
* <li>1 and 2 don't implement {@link ChannelOutboundHandler}, and therefore the actual evaluation order of a
* outbound event will be: 5, 4, and 3.</li>
* <li>If 5 implements both {@link ChannelInboundHandler} and {@link ChannelOutboundHandler}, the evaluation order of
* an inbound and a outbound event could be 125 and 543 respectively.</li>