From 3e21792b12ee61b2ed3fddd4c01d29c79fa95619 Mon Sep 17 00:00:00 2001 From: Trustin Lee Date: Wed, 3 Sep 2008 03:10:00 +0000 Subject: [PATCH] Simplified a sentence in ChannelPipeline explanation --- .../java/org/jboss/netty/channel/ChannelPipeline.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/main/java/org/jboss/netty/channel/ChannelPipeline.java b/src/main/java/org/jboss/netty/channel/ChannelPipeline.java index 7499824708..09fc7ceb5a 100644 --- a/src/main/java/org/jboss/netty/channel/ChannelPipeline.java +++ b/src/main/java/org/jboss/netty/channel/ChannelPipeline.java @@ -94,10 +94,10 @@ import org.jboss.netty.handler.ssl.SslHandler; * | I/O Threads (Transport Implementation) | * +------------------------------------------------------------------+ * - * 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). * *

Building a pipeline

*